|
Posted by Meiγo on 11/28/05 06:52
There is PEAR for PHP4.
as far as i can remember it is bundled with php. unless you're using
Debian packages, then you need to install php4-pear.
you need to include (or require) the pear module you want to use. Check
the examples on PEAR page.
Now, standard PHP library? All the stuff in the documentation is
bundled in PHP. You only need to include external modules.
about quoting:
echo "$bar"; //displays $bar contents
echo '$bar'; // displays $bar (the string)
you can:
echo "foo=\"blah\"$foo['bar']blahbar$foo=\"blah\"";
even though this string is illegible
Navigation:
[Reply to this message]
|