aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md')
-rw-r--r--vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md b/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md
deleted file mode 100644
index cc75fad0f..000000000
--- a/vendor/smarty/smarty/docs/programmers/api-functions/api-clear-all-assign.md
+++ /dev/null
@@ -1,34 +0,0 @@
-clearAllAssign()
-
-clears the values of all assigned variables
-
-Description
-===========
-
-void
-
-clearAllAssign
-
-
- <?php
- // passing name/value pairs
- $smarty->assign('Name', 'Fred');
- $smarty->assign('Address', $address);
-
- // will output above
- print_r( $smarty->getTemplateVars() );
-
- // clear all assigned variables
- $smarty->clearAllAssign();
-
- // will output nothing
- print_r( $smarty->getTemplateVars() );
-
- ?>
-
-
-
-See also [`clearAssign()`](#api.clear.assign),
-[`clearConfig()`](#api.clear.config),
-[`getTemplateVars()`](#api.get.template.vars), [`assign()`](#api.assign)
-and [`append()`](#api.append)