mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
15 lines
596 B
XML
15 lines
596 B
XML
<slide title="Stored Code">
|
|
<example title="You can store code in the database:"><![CDATA[mysql> CREATE TABLE code(c MEDIUMBLOB);
|
|
mysql> INSERT INTO code VALUES ('return strlen($argv[1]);');
|
|
mysql> INSERT INTO code VALUES ('return strtoupper($argv[1]);');
|
|
mysql> INSERT INTO code VALUES ('return strtolower($argv[1]);');
|
|
mysql> SELECT PHP(c,'Shrimp Dumpling') FROM code;
|
|
+--------------------------+
|
|
| PHP(c,'Shrimp Dumpling') |
|
|
+--------------------------+
|
|
| 15 |
|
|
| SHRIMP DUMPLING |
|
|
| shrimp dumpling |
|
|
+--------------------------+
|
|
]]></example></slide>
|