1
0
mirror of https://github.com/php/web-php.git synced 2026-04-28 17:33:10 +02:00

Add main slides

This commit is contained in:
Rasmus Lerdorf
1998-10-21 23:44:28 +00:00
parent 5a18d035ac
commit 2424277ad8
58 changed files with 1371 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?require "header.inc";?>
<h1>PHP Symbol Tables</h1>
<ul>
<li> Hash Tables
<li> 'active_symbol_table' - current
<li> 'symbol_table' - main (global)
<li> _php3_hash_exist() to check if a var exists
<li> _php3_hash_find() to check the type of a var
<li> Arrays in PHP use the same hash functions
</ul>
<h1>Setting variables in the symbol table</h1>
<ul>
<li>SET_VAR_STRING(name,value)
<li>SET_VAR_DOUBLE(name,value)
<li>SET_VAR_LONG(name,value)
</ul>
<h3>value arg must be emalloc'ed - no static memory!</h3>
<?require "footer.inc";?>