Free Stuff
: links
: downloads
: Neue Surf Tips
: know-how
: Zitate
: HTML Checker
Activities
--in spare time
: vorträge
About IC
: friends
: lust und frust
: guestbook
: what's new
|
|
Functions
|
id |
function |
desc |
uri |
|
1004 |
define() |
define ("THISNAME", "send_notification"); |
|
| 1001 |
ereg |
|
|
|
1002 |
preg_split() |
which uses a Perl-compatible regular expression syntax, is often a faster alternative to split()
$vals = preg_split("/,/", "foo,bar,craw");
echo "$vals[0]\n"; echo "$vals[1]\n"; echo "$vals[2]\n"; |
http://www.php.net/manual/en/function.split.php |
| 1003 |
print |
print <<
$cn $From $Subject $Body
EOQ;>> |
|
|
1005 |
urlencode() |
Formatting / encoding for http get request |
|
| 1006 |
var_dump( ) |
var_dump($array); |
|
|