recherches récentes:
incluez les fonctions ,
fonctions variables ,
fonctions de poteau...
Si vous êtes nouveau au PHP ou devez juste régénérer vos qualifications, c'est l'endroit à commencer. Cette série de cours d'instruction te donnera la connaissance de base que vous devrez créer un simple Site Web de PHP.
Le PHP est un langage de programmation r3fléchissant à l'origine conçu pour produire les pages Web dynamiques. [1] Le PHP est employé principalement dans le serveur-côté scripting, mais peut être employé d'une ligne de commande interface ou dans des applications graphiques autonomes. Des interfaces utilisateurs textuelles peuvent également être créées utilisant des ncurses.
PHP et HTML sont très interactifs : PHP peut générer du HTML et HTML peut passer des informations à PHP. Avant de lire cette faq (foire aux questions), il est important que vous appreniez comme récupérer des variables externes à PHP. La page du manuel correspondante contient beaucoup d'exemples. Faites particulièrement attention à ce que signifie register_globals.
Quel encodage/décodage ai-je besoin lors du passage d'une valeur via un formulaire/une URL ?
Il y a plusieurs étapes pour lesquelles le codage est important. En supposant que vous avez une chaîne de caractères $data, qui contient la chaîne que vous voulez passer de manière non-encodée, voici les étapes appropriées :
Interprétation HTML. Afin d'indiquer une chaîne aléatoire, vous devez l'inclure entre doubles guillemets et utiliser la fonction htmlspecialchars() pour encoder la chaîne.
URL : une URL est constituée de plusieurs parties. Si vous voulez que vos données soient interprétées comme un seul élément, vous devez les encoder avec la fonction urlencode().
Exemple #1 Un élément de formulaire HTML caché
<?php
echo '<input type="hidden" value="' . htmlspecialchars($data) . '" />';
?>
Note: Il n'est pas correct d'utiliser la fonction urlencode() pour vos données $data, car il en est de la responsabilité du navigateur de les encoder. Tous les navigateurs populaires le font correctement. Notez que cela s'effectue sans considération de la méthode utilisée (c'est-à-dire GET ou POST). Vous devez uniquement noter ce cas pour les requêtes GET, car les requêtes POST sont généralement cachées.
Exemple #2 Données éditables par l'utilisateur
<?php
echo "<textarea name=\"mydata\">\n";
echo htmlspecialchars($data)."\n";
echo '</textarea>';
?>
Note: Les données sont montrées dans le navigateur comme prévues, car celui-ci interprétera les symboles HTML échappés. Au moment de la validation, via la méthode GET ou POST, les données devraient être url-encodées par le navigateur avant le transfert et directement url-décodées par PHP. Donc, finalement, vous n'avez pas à effectuer d'url-encodage/url-decodage vous-même, tout est effectué automatiquement.
Exemple #3 Dans une URL
<?php
echo "<a href=\"" . htmlspecialchars("/nextpage.php?stage=23&data=" .
urlencode($data)) . "\">\n";
?>
Note: En fait, vous simulez une requête GET HTML, il est nécessaire d'utiliser manuellement la fonction urlencode() sur vos données.
Note: Vous devez utiliser htmlspecialchars() sur l'URL complète, car l'URL se comporte comme la valeur d'un attribut HTML. Dans ce cas, le navigateur fera un htmlspecialchars() sur la valeur et passera le résultat à l'URL. PHP devrait comprendre l'URL correctement, car vous avez url-encodé les données. Vous devez noter que & dans l'URL est remplacé par &. Bien que la plus part des navigateurs devraient corriger cela si vous l'oubliez, ce n'est pas toujours le cas. Donc, même si votre URL n'est pas dynamique, vous devez utiliser la fonction htmlspecialchars() sur l'URL.
J'essaye d'utiliser <input type="image"> mais les variables $foo.x et $foo.y ne sont pas disponibles. $_GET['foo.x'] n'existe pas non plus. Où sont-elles ?
Lorsque vous validez un formulaire, il est possible d'utiliser une image au lieu du bouton standard de type "submit" avec une balise du type :
<input type="image" src="image.gif" name="foo" />
Comme foo.x et foo.y sont des noms de variables invalides en PHP, elles sont automatiquement converties en foo_x et foo_y. Les points sont remplacés par des soulignés. Donc, vous devez accéder à ces variables comme n'importe quelle autre variable tel que décrit dans la section "Variables externes à PHP". Par exemple, en utilisant $_GET['foo_x'].
Note: Les espaces dans les noms de variables sont également converties en un souligné bas.
Comment créer un tableau dans une balise <form> HTML ?
Pour envoyer le résultat du <form> comme un tableau de variables à votre script PHP, vous devez nommer, via l'attribut name, les balises <input>, <select> ou <textarea> comme cela :
<input name="MonTableau[]" /> <input name="MonTableau[]" /> <input name="MonTableau[]" /> <input name="MonTableau[]" />
<input name="MonTableau[]" /> <input name="MonTableau[]" /> <input name="MonAutreTableau[]" /> <input name="MonAutreTableau[]" />
<input name="UnAutreTableau[]" /> <input name="UnAutreTableau[]" /> <input name="UnAutreTableau[email]" /> <input name="UnAutreTableau[telephone]" />
Note: Le fait de spécifier une clé à un tableau est optionnel en HTML. Si vous ne le faites pas, les clés du tableau suiveront l'ordre d'apparition des éléments dans le formulaire. Dans notre premier exemple, le tableau contient les clés 0, 1, 2 et 3.
Voir aussi les fonctions sur les tableaux de variables et la section sur les variables externes à PHP.
Comment puis-je récupérer le résultat d'un champ HTML SELECT multiple ?
Le champ SELECT multiple en HTML permet à l'utilisateur de sélectionner plusieurs éléments d'une liste. Ces éléments seront transmis à la page pointée par l'attribut action de la balise form. Le problème est que ces éléments sont tous passés avec le même nom de variable.
<select name="var" multiple="yes">
var=option1
var=option2
var=option3
<select name="var[]" multiple="yes">
Notez que si vous utilisez Javascript, [] dans le nom de l'élément peut vous poser problème lorsque vous tenterez d'accéder à celui-ci par son nom. Utilisez plutôt l'indice numérique de l'élément dans ce cas, ou bien utilisez les simples guillemets pour entourer cet élément, comme :
variable = documents.forms[0].elements['var[]'];
Comment puis-je passer une variable de Javascript vers PHP ?
Javascript est (habituellement) une technologie côté client et PHP est (habituellement) une technologie côté serveur et sachant que HTTP est un protocole statique, les deux langages ne peuvent pas directement partager des variables.
Cependant, il est possible de faire passer des variables entre les deux. Une des solutions pour cela est de générer un code Javascript à l'aide de PHP et de faire rafraîchir le navigateur tout seul, passant ainsi des variables spécifiques au script PHP. L'exemple suivant montre précisément comme réaliser cela -- il permet à PHP de récupérer les dimensions de l'écran du client, ce qui est normalement possible qu'en technologie coté client.
<?php
if (isset($_GET['largeur']) AND isset($_GET['hauteur'])) {
// Affichage des variables
echo 'La largeur de l\'écran est : ' . $_GET['largeur'] ."<br />\n";
echo 'La hauteur de l\'écran est : ' . $_GET['hauteur'] . "<br />\n";
} else {
// passage des variables de dimensions
// (préservation de la requête d'origine
// -- les variables par méthode POST doivent être traitées différemment)
echo "<script type=\"text/javascript\">\n";
echo " location.href=\"${_SERVER['SCRIPT_NAME']}?${_SERVER['QUERY_STRING']}"
. "&largeur=\" + screen.width + \"&hauteur=\" + screen.height;\n";
echo "</script>\n";
exit();
}
?>
Des autres fonctions utiles :
zlib.setup | zlib.resources | zlib.installation | zlib.examples | zlib.constants | zlib.configuration | zip.setup | zip.resources | zip.installation | zip.examples | zip.constants | zip.configuration | yaz.setup | yaz.resources | yaz.installation | yaz.examples | yaz.constants | yaz.configuration | xsltprocessor.transformtoxml | xsltprocessor.transformtouri | xsltprocessor.transformtodoc | xsltprocessor.setparameter | xsltprocessor.removeparameter | xsltprocessor.registerphpfunctions | xsltprocessor.importstylesheet | xsltprocessor.hasexsltsupport | xsltprocessor.getparameter | xsltprocessor.construct | xslt.setup | xslt.resources | xslt.installation | xslt.constants | xslt.configuration | xsl.setup | xsl.resources | xsl.installation | xsl.examples | xsl.constants | xsl.configuration | xmlwriter.setup | xmlwriter.resources | xmlwriter.installation | xmlwriter.constants | xmlwriter.configuration | xmlrpc.setup | xmlrpc.resources | xmlrpc.installation | xmlrpc.constants | xmlrpc.configuration | xmlreader.xml | xmlreader.setup | xmlreader.setrelaxngschemasource | xmlreader.setrelaxngschema | xmlreader.setparserproperty | xmlreader.resources | xmlreader.read | xmlreader.open | xmlreader.next | xmlreader.movetonextattribute | xmlreader.movetofirstattribute | xmlreader.movetoelement | xmlreader.movetoattributens | xmlreader.movetoattributeno | xmlreader.movetoattribute | xmlreader.lookupnamespace | xmlreader.isvalid | xmlreader.installation | xmlreader.getparserproperty | xmlreader.getattributens | xmlreader.getattributeno | xmlreader.getattribute | xmlreader.expand | xmlreader.configuration | xmlreader.close | xml.setup | xml.resources | xml.installation | xml.examples | xml.eventhandlers | xml.error-codes | xml.encoding | xml.constants | xml.configuration | xml.case-folding | xdiff.setup | xdiff.resources | xdiff.installation | xdiff.constants | xdiff.configuration | xattr.setup | xattr.resources | xattr.installation | xattr.constants | xattr.configuration | wrappers.ssh2 | wrappers.socket | wrappers.php | wrappers.http | wrappers | wrappers.glob | wrappers.ftp | wrappers.expect | wrappers.data | wrappers.compression | wrappers.audio | win32service.setup | win32service.resources | win32service.installation | win32service.examples | win32service.constants | win32service.configuration | win32ps.setup | win32ps.resources | win32ps.installation | win32ps.examples | win32ps.constants | win32ps.configuration | wddx.setup | wddx.resources | wddx.installation | wddx.examples | wddx.constants | wddx.configuration | w32api.setup | w32api.resources | w32api.installation | w32api.examples | w32api.constants | w32api.configuration | vpopmail.setup | vpopmail.resources | vpopmail.installation | vpopmail.constants | vpopmail.configuration | var.setup | var.resources | var.installation | var.constants | var.configuration | userlandnaming.tips | userlandnaming.rules | userlandnaming | url.setup | url.resources | url.installation | url.constants | url.configuration | uodbc.setup | uodbc.resources | uodbc.constants | unicode.setup | unicode.resources | unicode.installation | unicode.constants | unicode.configuration | types.comparisons | tutorial.whatsnext | tutorial.useful | tutorial.oldcode | tutorial | tutorial.forms | tutorial.firstpage | transports.unix | transports | tokens | tokenizer.setup | tokenizer.resources | tokenizer.installation | tokenizer.examples | tokenizer.constants | tokenizer.configuration | timezones.pacific | timezones.others | timezones.indian | timezones | timezones.europe | timezones.australia | timezones.atlantic | timezones.asia | timezones.arctic | timezones.antarctica | timezones.america | tidy.setup | tidy.resources | tidy.installation | tidy.examples | tidy.constants | tidy.configuration | tcpwrap.setup | tcpwrap.resources | tcpwrap.installation | tcpwrap.constants | tcpwrap.configuration | sybase.setup | sybase.resources | sybase.installation | sybase.constants | sybase.configuration | swish.setup | swish.resources | swish.installation | swish.examples | swish.constants | swish.configuration | swf.setup | swf.resources | swf.installation | swf.examples | swf.constants | swf.configuration | svn.setup | svn.resources | svn.installation | svn.constants | svn.configuration | strings.setup | strings.resources | strings.installation | strings.configuration | string.constants | stream.setup | stream.resources | stream.installation | stream.filters | stream.examples | stream.errors | stream.contexts | stream.constants | stream.configuration | stats.setup | stats.resources | stats.installation | stats.constants | stats.configuration | ssh2.setup | ssh2.resources | ssh2.installation | ssh2.constants | ssh2.configuration | sqlite.setup | sqlite.resources | sqlite.installation | sqlite.constants | sqlite.configuration | spplus.setup | spplus.installation | spplus.constants | spl.setup | spl.resources | spl.installation | spl.constants | spl.configuration | sockets.setup | sockets.resources | sockets.installation | sockets.examples | sockets.errors | sockets.constants | sockets.configuration | soap.setup | soap.resources | soap.installation | soap.constants | soap.configuration | snmp.setup | snmp.resources | snmp.installation | snmp.constants | snmp.configuration | simplexmliterator.valid | simplexmliterator.rewind | simplexmliterator.next | simplexmliterator.key | simplexmliterator.haschildren | simplexmliterator.getchildren | simplexmliterator.current | simplexml.setup | simplexml.resources | simplexml.installation | simplexml.examples | simplexml.constants | simplexml.configuration | shmop.setup | shmop.resources | shmop.installation | shmop.examples | shmop.constants | shmop.configuration | session.setup | session.security | session.resources | session.installation | session.idpassing | session.examples | session.customhandler | session.configuration | session-pgsql.tables | session-pgsql.setup | session-pgsql.resources | session-pgsql.installation | session-pgsql.constants | session-pgsql.configuration | sem.setup | sem.resources | sem.installation | sem.constants | sem.configuration | security.variables | security.magicquotes.whynot | security.magicquotes.why | security.magicquotes | security.magicquotes.disabling | security.intro | security | security.hiding | security.globals | security.general | security.filesystem | security.errors | security.database.storage | security.database.sql-injection | security.database | security.database.connection | security.current | security.cgi-bin.shell | security.cgi-bin | security.cgi-bin.force-redirect | security.cgi-bin.doc-root | security.cgi-bin.default | security.apache | sdodasrel.setup | sdodasrel.resources | sdodasrel.installation | sdodasrel.constants | sdodasrel.configuration | sdo.setup | sdo.sample.sequence | sdo.sample.reflection | sdo.sample.getset | sdo.resources | sdo.limitations | sdo.installation | sdo.examples | sdo.das.rel.metadata | sdo.das.rel.limitations | sdo.das.rel.examples.two-table | sdo.das.rel.examples.three-table | sdo.das.rel.examples.one-table | sdo.das.rel.examples | sdo.constants | sdo.configuration | sdo-das-xml.setup | sdo-das-xml.resources | sdo-das-xml.installation | sdo-das-xml.examples | sdo-das-xml.constants | sdo-das-xml.configuration | sca.setup | sca.resources | sca.installation | sca.examples | sca.examples.exposing-webservice | sca.constants | sca.configuration | sam.setup | sam.resources | sam.pubsub | sam.operations | sam.messages | sam.installation | sam.examples | sam.errors | sam.constants | sam.configuration | runkit.setup | runkit.sandbox | runkit.sandbox-parent | runkit.resources | runkit.installation | runkit.constants | runkit.configuration | rpmreader.setup | rpmreader.resources | rpmreader.installation | rpmreader.examples | rpmreader.constants | rpmreader.configuration | resource | reserved.variables | reserved | reserved.constants | reserved.classes | regexp.reference | regex.setup | regex.resources | regex.installation | regex.examples | regex.constants | regex.configuration | refs.xml | refs.webservice | refs.utilspec.windows | refs.utilspec.server | refs.utilspec.nontext | refs.utilspec.image | refs.utilspec.cmdline | refs.utilspec.audio | refs.remote.other | refs.remote.mail | refs.remote.auth | refs.mathcrypto.math | refs.mathcrypto.crypto | refs.international | refs.fileprocess.process | refs.fileprocess.file | refs.database.vendors | refs.database | refs.database.abstract | refs.creditcard | refs.compression | refs.calendar | refs.basic.vartype | refs.basic.text | refs.basic.session | refs.basic.php | refs.basic.other | reference.pcre.pattern.syntax | reference.pcre.pattern.modifiers | ref.zlib | ref.zip | ref.yaz | ref.xslt | ref.xmlwriter | ref.xmlrpc | ref.xml | ref.xdiff | ref.xattr | ref.win32service | ref.win32ps | ref.wddx | ref.w32api | ref.vpopmail | ref.var | ref.url | ref.uodbc | ref.unicode | ref.tokenizer | ref.tidy | ref.tcpwrap | ref.sybase | ref.swish | ref.swf | ref.svn | ref.strings | ref.stream | ref.stats | ref.ssh2 | ref.sqlite | ref.spplus | ref.spl | ref.sockets | ref.soap | ref.snmp | ref.simplexml | ref.shmop | ref.session | ref.session-pgsql | ref.sem | ref.sdo | ref.sdo.das.rel | ref.sdo-das-xml | ref.sca | ref.sam | ref.runkit | ref.rpmreader | ref.regex | ref.recode | ref.readline | ref.rar | ref.radius | ref.qtdom | ref.pspell | ref.ps | ref.printer | ref.posix | ref.pgsql | ref.pdo-sqlite | ref.pdo-sqlite.connection | ref.pdo-pgsql | ref.pdo-pgsql.connection | ref.pdo-odbc | ref.pdo-odbc.connection | ref.pdo-oci | ref.pdo-oci.connection | ref.pdo-mysql | ref.pdo-mysql.connection | ref.pdo-informix | ref.pdo-informix.connection | ref.pdo-ibm | ref.pdo-ibm.connection | ref.pdo-firebird | ref.pdo-firebird.connection | ref.pdo-dblib | ref.pdo-dblib.connection | ref.pdf | ref.pcre | ref.pcntl | ref.parsekit | ref.paradox | ref.ovrimos | ref.overload | ref.outcontrol | ref.openssl | ref.openal | ref.oci8 | ref.objaggregation | ref.nsapi | ref.notes | ref.nis | ref.newt | ref.network | ref.net-gopher | ref.ncurses | ref.mysqli | ref.mysql | ref.mssql | ref.msql | ref.msession | ref.mqseries | ref.mnogosearch | ref.misc | ref.ming | ref.mime-magic | ref.mhash | ref.memcache | ref.mcve | ref.mcrypt | ref.mbstring | ref.maxdb | ref.math | ref.mailparse | ref.mail | ref.lzf | ref.libxml | ref.ldap | ref.kadm5 | ref.json | ref.java | ref.intl | ref.ingres | ref.info | ref.imap | ref.image | ref.iisfunc | ref.ifx | ref.id3 | ref.iconv | ref.ibm-db2 | ref.ibase | ref.i18n | ref.hwapi | ref.hw | ref.http | ref.hash | ref.gnupg | ref.gmp | ref.gettext | ref.geoip | ref.ftp | ref.fribidi | ref.filter | ref.filesystem | ref.filepro | ref.fileinfo | ref.fdf | ref.fbsql | ref.fam | ref.expect | ref.exif | ref.exec | ref.errorfunc | ref.enchant | ref.dotnet | ref.domxml | ref.dir | ref.dio | ref.dbx | ref.dbplus | ref.dbase | ref.dba | ref.datetime | ref.cyrus | ref.curl | ref.ctype | ref.crack | ref.com | ref.classobj | ref.classkit | ref.calendar | ref.bzip2 | ref.bcompiler | ref.bc | ref.bbcode | ref.array | ref.apd | ref.apc | ref.apache | recursiveiteratoriterator.valid | recursiveiteratoriterator.rewind | recursiveiteratoriterator.next | recursiveiteratoriterator.key | recursiveiteratoriterator.getsubiterator | recursiveiteratoriterator.getdepth | recursiveiteratoriterator.current | recursivedirectoryiterator.rewind | recursivedirectoryiterator.next | recursivedirectoryiterator.key | recursivedirectoryiterator.haschildren | recursivedirectoryiterator.getchildren | recursivecachingiterator.haschildren | recursivecachingiterator.getchildren | recode.setup | recode.resources | recode.installation | recode.constants | recode.configuration | readline.setup | readline.resources | readline.installation | readline.constants | readline.configuration | rar.setup | rar.resources | rar.installation | rar.examples | rar.constants | rar.configuration | radius.setup | radius.resources | radius.installation | radius.examples | radius.constants | radius.configuration | qtdom.setup | qtdom.resources | qtdom.installation | qtdom.constants | qtdom.configuration | pspell.setup | pspell.resources | pspell.installation | pspell.constants | pspell.configuration | ps.setup | ps.resources | ps.installation | ps.constants | ps.configuration | printer.setup | printer.resources | printer.installation | printer.constants | printer.configuration | preface | posix.setup | posix.resources | posix.installation | posix.constants | posix.configuration | phargileinfo.delmetadata | phargileinfo.chmod | pharfileinfo.setuncompressed | pharfileinfo.setmetadata | pharfileinfo.setcompressedgz | pharfileinfo.setcompressedbzip2 | pharfileinfo.iscrcchecked | pharfileinfo.iscompressedgz | pharfileinfo.iscompressedbzip2 | pharfileinfo.iscompressed | pharfileinfo.hasmetadata | pharfileinfo.getpharflags | pharfileinfo.getmetadata | pharfileinfo.getcrc32 | pharfileinfo.getcompressedsize | pharfileinfo.construct | phardata.setstub | phardata.setalias | phardata.offsetset | phardata.delmetadata | phardata.copy | phardata.converttozip | phardata.converttotar | phardata.converttophar | phardata.construct | phardata.compressallfilesgz | phardata.compressallfilesbzip2 | phardata.buildfromiterator | phar.webphar | phar.using.stream | phar.using.object | phar.using | phar.uncompressallfiles | phar.stopbuffering | phar.startbuffering | phar.setup | phar.setstub | phar.setsignaturealgorithm | phar.setmetadata | phar.setalias | phar.resources | phar.offsetunset | phar.offsetset | phar.offsetget | phar.offsetexists | phar.mungserver | phar.mapphar | phar.loadphar | phar.iszip | phar.isvalidpharfilename | phar.istar | phar.isphar | phar.iscompressed | phar.isbuffering | phar.interceptfilefuncs | phar.installation | phar.hasmetadata | phar.getversion | phar.getsupportedsignatures | phar.getsupportedcompression | phar.getstub | phar.getsignature | phar.getmodified | phar.getmetadata | phar.fileformat.zip | phar.fileformat.tar | phar.fileformat.stub | phar.fileformat.signature | phar.fileformat.phar | phar.fileformat.manifestfile | phar.fileformat | phar.fileformat.flags | phar.fileformat.comparison | phar.delmetadata | phar.creating | phar.createdefaultstub | phar.count | phar.copy | phar.converttozip | phar.converttotar | phar.converttophar | phar.construct | phar.constants | phar.configuration | phar.compressallfilesgz | phar.compressallfilesbzip2 | phar.compress | phar.canwrite | phar.cancompress | phar.buildfromiterator | phar.apiversion | pgsql.setup | pgsql.resources | pgsql.installation | pgsql.examples | pgsql.constants | pgsql.configuration | pecl.kadm5.constantsOP | pdostatement.setfetchmode | pdostatement.setattribute | pdostatement.rowcount | pdostatement.nextrowset | pdostatement.getcolumnmeta | pdostatement.getattribute | pdostatement.fetchobject | pdostatement.fetchcolumn | pdostatement.fetchall | pdostatement.fetch | pdostatement.execute | pdostatement.errorinfo | pdostatement.errorcode | pdostatement.columncount | pdostatement.closecursor | pdostatement.bindvalue | pdostatement.bindparam | pdostatement.bindcolumn | pdo.transactions | pdo.setup | pdo.setattribute | pdo.rollback | pdo.resources | pdo.quote | pdo.query | pdo.prepared-statements | pdo.prepare | pdo.lobs | pdo.lastinsertid | pdo.installation | pdo.getavailabledrivers | pdo.getattribute | pdo.exec | pdo.errorinfo | pdo.errorcode | pdo.error-handling | pdo.drivers | pdo.construct | pdo.constants | pdo.connections | pdo.configuration | pdo.commit | pdo.begintransaction | pdf.setup | pdf.resources | pdf.installation | pdf.examples | pdf.constants | pdf.configuration | pcre.setup | pcre.resources | pcre.pattern.syntax.differences | pcre.pattern | pcre.installation | pcre.examples | pcre.constants | pcre.configuration | pcntl.setup | pcntl.resources | pcntl.installation | pcntl.examples | pcntl.constants | pcntl.configuration | parsekit.setup | parsekit.resources | parsekit.installation | parsekit.constants | parsekit.configuration | parentiterator.rewind | parentiterator.next | parentiterator.haschildren | parentiterator.getchildren | paradox.setup | paradox.resources | paradox.installation | paradox.constants | paradox.configuration | ovrimos.setup | ovrimos.resources | ovrimos.installation | ovrimos.examples | ovrimos.constants | ovrimos.configuration | overload.setup | overload.resources | overload.installation | overload.examples | overload.constants | overload.configuration | outcontrol.setup | outcontrol.resources | outcontrol.installation | outcontrol.examples | outcontrol.constants | outcontrol.configuration | opl.scope | opl.options | opl.modified.works | opl.license | opl.good-practice | opl.copyright | openssl.signature-algos | openssl.setup | openssl.resources | openssl.pkcs7.flags | openssl.padding | openssl.key-types | openssl.installation | openssl.constversion | openssl.constants | openssl.configuration | openssl.ciphers | openssl.certparams | openssl.cert.verification | openal.setup | openal.resources | openal.installation | openal.constants | openal.configuration | oggvorbis.setup | oggvorbis.resources | oggvorbis.installation | oggvorbis.examples | oggvorbis.contexts | oggvorbis.constants | oggvorbis.configuration | odbc.installation | odbc.configuration | oci8.setup | oci8.resources | oci8.installation | oci8.examples | oci8.datatypes | oci8.constants | oci8.connection | oci8.configuration | objaggregation.examples2 | objaggregation.examples | numberformatter.settextattribute | numberformatter.setsymbol | numberformatter.setpattern | numberformatter.setattribute | numberformatter.parsecurrency | numberformatter.parse | numberformatter.gettextattribute | numberformatter.getsymbol | numberformatter.getpattern | numberformatter.getlocale | numberformatter.geterrormessage | numberformatter.geterrorcode | numberformatter.getattribute | numberformatter.formatcurrency | numberformatter.format | numberformatter.create | nsapi.setup | nsapi.resources | nsapi.installation | nsapi.constants | nsapi.configuration | notes.setup | notes.resources | notes.installation | notes.constants | notes.configuration | normalizer.normalize | normalizer.isnormalized | nis.setup | nis.resources | nis.installation | nis.constants | nis.configuration | newt.setup | newt.resources | newt.installation | newt.examples | newt.constants | newt.configuration | network.setup | network.resources | network.installation | network.constants | network.configuration | net-gopher.setup | net-gopher.resources | net-gopher.install | net-gopher.examples | net-gopher.constants | net-gopher.configuration | ncurses.setup | ncurses.resources | ncurses.mouseconsts | ncurses.keyconsts | ncurses.installation | ncurses.constants | ncurses.configuration | ncurses.colorconsts | mysqli.warning-count | mysqli.use-result | mysqli.thread-safe | mysqli.thread-id | mysqli.store-result | mysqli.stmt-init | mysqli.stat | mysqli.ssl-set | mysqli.sqlstate | mysqli.setup | mysqli.set-local-infile-handler | mysqli.set-local-infile-default | mysqli.set-charset | mysqli.select-db | mysqli.rollback | mysqli.resources | mysqli.real-query | mysqli.real-escape-string | mysqli.real-connect | mysqli.query | mysqli.prepare | mysqli.ping | mysqli.options | mysqli.next-result | mysqli.multi-query | mysqli.more-results | mysqli.kill | mysqli.installation | mysqli.insert-id | mysqli.init | mysqli.info | mysqli.get-warnings | mysqli.get-server-version | mysqli.get-server-info | mysqli.get-proto-info | mysqli.get-host-info | mysqli.get-client-version | mysqli.get-client-info | mysqli.get-charset | mysqli.field-count | mysqli.error | mysqli.errno | mysqli.dump-debug-info | mysqli.debug | mysqli.constants | mysqli.connect | mysqli.connect-error | mysqli.connect-errno | mysqli.configuration | mysqli.commit | mysqli.close | mysqli.character-set-name | mysqli.change-user | mysqli.autocommit | mysqli.affected-rows | mysqli-stmt.store-result | mysqli-stmt.sqlstate | mysqli-stmt.send-long-data | mysqli-stmt.result-metadata | mysqli-stmt.reset | mysqli-stmt.prepare | mysqli-stmt.param-count | mysqli-stmt.num-rows | mysqli-stmt.insert-id | mysqli-stmt.get-warnings | mysqli-stmt.free-result | mysqli-stmt.field-count | mysqli-stmt.fetch | mysqli-stmt.execute | mysqli-stmt.error | mysqli-stmt.errno | mysqli-stmt.data-seek | mysqli-stmt.close | mysqli-stmt.bind-result | mysqli-stmt.bind-param | mysqli-stmt.attr-set | mysqli-stmt.attr-get | mysqli-stmt.affected-rows | mysqli-result.num-rows | mysqli-result.lengths | mysqli-result.free | mysqli-result.field-seek | mysqli-result.field-count | mysqli-result.fetch-row | mysqli-result.fetch-object | mysqli-result.fetch-fields | mysqli-result.fetch-field | mysqli-result.fetch-field-direct | mysqli-result.fetch-assoc | mysqli-result.fetch-array | mysqli-result.data-seek | mysqli-result.current-field | mysqli-driver.embedded-server-start | mysqli-driver.embedded-server-end | mysql.setup | mysql.resources | mysql.installation | mysql.examples | mysql.constants | mysql.configuration | mssql.setup | mssql.resources | mssql.installation | mssql.constants | mssql.configuration | msql.setup | msql.resources | msql.installation | msql.examples | msql.constants | msql.configuration | msession.setup | msession.resources | msession.installation | msession.constants | msession.configuration | mqseries.setup | mqseries.resources | mqseries.ini | mqseries.constants | mqseries.configure | mnogosearch.setup | mnogosearch.resources | mnogosearch.installation | mnogosearch.constants | mnogosearch.configuration | missing-stuff | misc.setup | misc.resources | misc.installation | misc.constants | misc.configuration | ming.setup | ming.resources | ming.install | ming.examples.swfsprite-basic | ming.examples | ming.constants | ming.configuration | mime-magic.setup | mime-magic.resources | mime-magic.installation | mime-magic.constants | mime-magic.configuration | migration52.removed-extensions | migration52.parameters | migration52.other | migration52.newconf | migration52.new-extensions | migration52.methods | migration52.incompatible | migration52 | migration52.global-constants | migration52.functions | migration52.errorrep | migration52.error-messages | migration52.datetime | migration52.classes | migration52.class-constants | migration51.references | migration51.reading | migration51.oop | migration51.integer-parameters | migration51 | migration51.extensions | migration51.errorcheck | migration51.datetime | migration51.databases | migration5.oop | migration5.newconf | migration5.incompatible | migration5 | migration5.functions | migration5.databases | migration5.configuration | migration5.cli-cgi | migrating5.errorrep | mhash.setup | mhash.resources | mhash.installation | mhash.examples | mhash.constants | mhash.configuration | messageformatter.setpattern | messageformatter.parsemessage | messageformatter.parse | messageformatter.getpattern | messageformatter.getlocale | messageformatter.geterrormessage | messageformatter.geterrorcode | messageformatter.formatmessage | messageformatter.format | messageformatter.create | memcache.setup | memcache.resources | memcache.installation | memcache.ini | memcache.examples | memcache.constants | mcve.setup | mcve.resources | mcve.installation | mcve.constants | mcve.configuration | mcrypt.setup | mcrypt.resources | mcrypt.installation | mcrypt.examples | mcrypt.constants | mcrypt.configuration | mcrypt.ciphers | mbstring.supported-encodings | mbstring.setup | mbstring.resources | mbstring.php4.req | mbstring.overload | mbstring.ja-basic | mbstring.installation | mbstring.http | mbstring.encodings | mbstring.constants | mbstring.configuration | maxdb.setup | maxdb.resources | maxdb.installation | maxdb.examples | maxdb.constants | maxdb.configuration | math.setup | math.resources | math.installation | math.constants | math.configuration | manual | mailparse.setup | mailparse.resources | mailparse.installation | mailparse.constants | mailparse.configuration | mail.setup | mail.resources | mail.installation | mail.constants | mail.configuration | lzf.setup | lzf.resources | lzf.installation | lzf.constants | lzf.configuration | locale.setdefault | locale.parselocale | locale.lookup | locale.getscript | locale.getregion | locale.getprimarylanguage | locale.getkeywords | locale.getdisplayvariant | locale.getdisplayscript | locale.getdisplayregion | locale.getdisplayname | locale.getdisplaylanguage | locale.getdefault | locale.getallvariants | locale.filtermatches | locale.composelocale | limititerator.valid | limititerator.seek | limititerator.rewind | limititerator.next | limititerator.getposition | libxml.setup | libxml.resources | libxml.installation | libxml.constants | libxml.configuration | ldap.using | ldap.setup | ldap.resources | ldap.installation | ldap.examples | ldap.constants | ldap.configuration | language.variables.variable | language.variables.scope | language.variables.predefined | language.variables | language.variables.external | language.types.type-juggling | language.types.string | language.types.resource | language.types.object | language.types.null | language.types.integer | language.types | language.types.float | language.types.boolean | language.types.array | language.references.whatdo | language.references.unset | language.references.spot | language.references.return | language.references.pass | language.references | language.references.arent | language.pseudo-types | language.operators.type | language.operators.string | language.operators.logical | language.operators.increment | language.operators | language.operators.execution | language.operators.errorcontrol | language.operators.comparison | language.operators.bitwise | language.operators.assignment | language.operators.array | language.operators.arithmetic | language.oop5.visibility | language.oop5.typehinting | language.oop5.static | language.oop5.reflection | language.oop5.patterns | language.oop5.paamayim-nekudotayim | language.oop5.overloading | language.oop5.object-comparison | language.oop5.magic | language.oop5.late-static-bindings | language.oop5.iterations | language.oop5.interfaces | language.oop5 | language.oop5.final | language.oop5.decon | language.oop5.constants | language.oop5.cloning | language.oop5.basic | language.oop5.autoload | language.oop5.abstract | language.oop.serialization | language.oop.object-comparison | language.oop.newref | language.oop.magic-functions | language.oop | language.oop.constructor | language.namespaces.using | language.namespaces.rules | language.namespaces | language.namespaces.global | language.namespaces.definition | language.namespaces.constant | language.functions | language.expressions | language.exceptions | language.control-structures | language.constants.predefined | language.constants | language.basic-syntax.instruction-separation | language.basic-syntax | language.basic-syntax.comments | langref | keyword.parent | keyword.paamayim-nekudotayim | keyword.extends | kadm5.setup | kadm5.resources | kadm5.installation | kadm5.examples | kadm5.constants | kadm5.configuration | json.setup | json.resources | json.installation | json.constants | json.configuration | java.setup | java.servlet | java.resources | java.installation | java.examples | java.constants | java.configuration | introduction | intro.zlib | intro.zip | intro.yaz | intro.xslt | intro.xsl | intro.xmlwriter | intro.xmlrpc | intro.xmlreader | intro.xml | intro.xdiff | intro.xattr | intro.win32service | intro.win32ps | intro.wddx | intro.w32api | intro.vpopmail | intro.var | intro.url | intro.uodbc | intro.unicode | intro.tokenizer | intro.tidy | intro.tcpwrap | intro.sybase | intro.swish | intro.swf | intro.svn | intro.strings | intro.stream | intro.stats | intro.ssh2 | intro.sqlite | intro.spplus | intro.spl | intro.sockets | intro.soap | intro.snmp | intro.simplexml | intro.shmop | intro.session | intro.session-pgsql | intro.sem | intro.sdodasrel | intro.sdo | intro.sdo-das-xml | intro.sca | intro.sam | intro.runkit | intro.rpmreader | intro.regex | intro.recode | intro.readline | intro.rar | intro.radius | intro.qtdom | intro.pspell | intro.ps | intro.printer | intro.posix | intro.phar | intro.pgsql | intro.pdo | intro.pdf | intro.pcre | intro.pcntl | intro.parsekit | intro.paradox | intro.ovrimos | intro.overload | intro.outcontrol | intro.openssl | intro.openal | intro.oggvorbis | intro.oci8 | intro.objaggregation | intro.nsapi | intro.notes | intro.nis | intro.newt | intro.network | intro.net-gopher | intro.ncurses | intro.mysqli | intro.mysql | intro.mssql | intro.msql | intro.msession | intro.mqseries | intro.mnogosearch | intro.misc | intro.ming | intro.mime-magic | intro.mhash | intro.memcache | intro.mcve | intro.mcrypt | intro.mbstring | intro.maxdb | intro.math | intro.mailparse | intro.mail | intro.lzf | intro.libxml | intro.ldap | intro.kadm5 | intro.json | intro.java | intro.intl | intro.ingres | intro.info | intro.imap | intro.imagick | intro.image | intro.iisfunc | intro.ifx | intro.id3 | intro.iconv | intro.ibm-db2 | intro.ibase | intro.i18n | intro.hwapi | intro.hw | intro.http | intro.hash | intro.haru | intro.gnupg | intro.gmp | intro.gettext | intro.geoip | intro.funchand | intro.ftp | intro.fribidi | intro.filter | intro.filesystem | intro.filepro | intro.fileinfo | intro.fdf | intro.fbsql | intro.fam | intro.expect | intro.exif | intro.exec | intro.errorfunc | intro.enchant | intro.domxml | intro.dom | intro.dio | intro.dbx | intro.dbplus | intro.dbase | intro.dba | intro.datetime | intro.cyrus | intro.curl | intro.ctype | intro.crack | intro.com | intro.classobj | intro.classkit | intro.calendar | intro.bzip2 | intro.bcompiler | intro.bc | intro.bbcode | intro.array | intro.apd | intro.apc | intro.apache | intro-whatcando | intl.testing | intl.setup | intl.resources | intl.installation | intl.examples | intl.constants | intl.building | internals2.ze3 | internals2.ze1.zendapi | internals2.ze1.tsrm | internals2.ze1.streams | internals2.ze1 | internals2.variables | internals2.structure.tests | internals2.structure.modstruct | internals2.structure.lifecycle | internals2.structure | internals2.structure.globals | internals2.streams | internals2.resources | internals2.preface | internals2.pdo.testing | internals2.pdo.preparation | internals2.pdo.pdo_stmt_t | internals2.pdo.pdo-dbh-t | internals2.pdo.packaging | internals2.pdo.implementing | internals2.pdo | internals2.pdo.error-handling | internals2.pdo.constants | internals2.pdo.building | internals2.objects | internals2.memory | internals2.ini | internals2.funcs | internals2.faq | internals2.counter.setup | internals2.counter.resources | internals2.counter.ini | internals2.counter | internals2.counter.examples.objective | internals2.counter.examples | internals2.counter.examples.extended | internals2.counter.counter-class.resetValue | internals2.counter.counter-class | internals2.counter.counter-class.getValue | internals2.counter.counter-class.getNamed | internals2.counter.counter-class.getMeta | internals2.counter.counter-class.construct | internals2.counter.counter-class.bumpValue | internals2.counter.constants | internals2.buildsys.skeleton | internals2.buildsys | internals2.buildsys.configwin | internals2.buildsys.configunix | internals2.apiref | install.windows.xitami | install.windows.sun | install.windows.sambar | install.windows.omnihttpd | install.windows.manual | install.windows.installer | install.windows.iis | install.windows | install.windows.extensions | install.windows.building | install.windows.apache2 | install.windows.apache1 | install.windows.activescript | install.unix.sun | install.unix.solaris | install.unix.openbsd | install.unix | install.unix.hpux | install.unix.fhttpd | install.unix.debian | install.unix.commandline | install.unix.caudium | install.unix.apache2 | install.problems.support | install.problems | install.problems.bugs | install.pecl.windows | install.pecl.static | install.pecl.phpize | install.pecl.pear | install.pecl | install.pecl.downloads | install.macosx.server | install.macosx | install.macosx.client | install.macosx.bundled | install | install.general | ini | ini.core | ingres.setup | ingres.resources | ingres.installation | ingres.examples | ingres.constants | ingres.configuration | info.setup | info.resources | info.installation | info.constants | info.configuration | indexes | index | imap.setup | imap.resources | imap.installation | imap.constants | imap.configuration | imagick.setup | imagick.resources | imagick.installation | imagick.examples | imagick.constants | imagick.configuration | image.setup | image.resources | image.installation | image.examples | image.constants | image.configuration | iisfunc.setup | iisfunc.resources | iisfunc.installation | iisfunc.constants | iisfunc.configuration | ifx.setup | ifx.resources | ifx.installation | ifx.constants | ifx.configuration | id3.setup | id3.resources | id3.installation | id3.constants | id3.configuration | iconv.setup | iconv.resources | iconv.installation | iconv.constants | iconv.configuration | ibm-db2.setup | ibm-db2.resources | ibm-db2.installation | ibm-db2.constants | ibm-db2.configuration | ibase.setup | ibase.resources | ibase.installation | ibase.constants | ibase.configuration | i18n.setup | i18n.resources | i18n.installation | i18n.constants | i18n.configuration | hwapi.setup | hwapi.resources | hwapi.installation | hwapi.constants | hwapi.configuration | hw.setup | hw.resources | hw.installation | hw.constants | hw.configuration | hw.apache | http.setup | http.resources | http.request.options | http.install | http.constants | http.configuration | history.php.related | history.php.publications | history.php.books | history | hash.setup | hash.resources | hash.installation | hash.constants | hash.configuration | haruexception.synopsis | haru.setup | haru.resources | haru.installation | haru.examples | haru.constants | haru.configuration | haru.builtin | haru.builtin.encodings | gnupg.setup | gnupg.resources | gnupg.installation | gnupg.examples | gnupg.constants | gnupg.configuration | gmp.setup | gmp.resources | gmp.installation | gmp.examples | gmp.constants | gmp.configuration | getting-started | gettext.setup | gettext.resources | gettext.installation | gettext.constants | gettext.configuration | geoip.setup | geoip.resources | geoip.installation | geoip.constants | geoip.configuration | functions.variable-functions | functions.returning-values | functions.internal | functions.arguments | function.zlib-get-coding-type | function.ziparchive-unchangename | function.ziparchive-unchangeindex | function.ziparchive-unchangearchive | function.ziparchive-unchangeall | function.ziparchive-statname | function.ziparchive-statindex | function.ziparchive-setcommentindex | function.ziparchive-setarchivecomment | function.ziparchive-setCommentName | function.ziparchive-renamename | function.ziparchive-renameindex | function.ziparchive-open | function.ziparchive-locatename | function.ziparchive-getstream | function.ziparchive-getnameindex | function.ziparchive-getfromname | function.ziparchive-getfromindex | function.ziparchive-getcommentname | function.ziparchive-getcommentindex | function.ziparchive-getarchivecomment | function.ziparchive-extractto | function.ziparchive-deletename | function.ziparchive-deleteindex | function.ziparchive-close | function.ziparchive-addfromstring | function.ziparchive-addfile | function.ziparchive-addemptydir | function.zip-read | function.zip-open | function.zip-entry-read | function.zip-entry-open | function.zip-entry-name | function.zip-entry-filesize | function.zip-entry-compressionmethod | function.zip-entry-compressedsize | function.zip-entry-close | function.zip-close | function.zend-version | function.zend-thread-id | function.zend-logo-guid | function.yp-order | function.yp-next | function.yp-match | function.yp-master | function.yp-get-default-domain | function.yp-first | function.yp-errno | function.yp-err-string | function.yp-cat | function.yp-all | function.yaz-wait | function.yaz-syntax | function.yaz-sort | function.yaz-set-option | function.yaz-search | function.yaz-schema | function.yaz-scan | function.yaz-scan-result | function.yaz-record | function.yaz-range | function.yaz-present | function.yaz-itemorder | function.yaz-hits | function.yaz-get-option | function.yaz-es | function.yaz-es-result | function.yaz-error | function.yaz-errno | function.yaz-element | function.yaz-database | function.yaz-connect | function.yaz-close | function.yaz-ccl-parse | function.yaz-ccl-conf | function.yaz-addinfo | function.xslt-setopt | function.xslt-set-scheme-handlers | function.xslt-set-scheme-handler | function.xslt-set-sax-handlers | function.xslt-set-sax-handler | function.xslt-set-object | function.xslt-set-log | function.xslt-set-error-handler | function.xslt-set-encoding | function.xslt-set-base | function.xslt-process | function.xslt-getopt | function.xslt-free | function.xslt-error | function.xslt-errno | function.xslt-create | function.xslt-backend-version | function.xslt-backend-name | function.xslt-backend-info | function.xptr-new-context | function.xptr-eval | function.xpath-register-ns | function.xpath-register-ns-auto | function.xpath-new-context | function.xpath-eval | function.xpath-eval-expression | function.xmlwriter-write-raw | function.xmlwriter-write-pi | function.xmlwriter-write-element | function.xmlwriter-write-element-ns | function.xmlwriter-write-dtd | function.xmlwriter-write-dtd-entity | function.xmlwriter-write-dtd-element | function.xmlwriter-write-dtd-attlist | function.xmlwriter-write-comment | function.xmlwriter-write-cdata | function.xmlwriter-write-attribute | function.xmlwriter-write-attribute-ns | function.xmlwriter-text | function.xmlwriter-start-pi | function.xmlwriter-start-element | function.xmlwriter-start-element-ns | function.xmlwriter-start-dtd | function.xmlwriter-start-dtd-entity | function.xmlwriter-start-dtd-element | function.xmlwriter-start-dtd-attlist | function.xmlwriter-start-document | function.xmlwriter-start-comment | function.xmlwriter-start-cdata | function.xmlwriter-start-attribute | function.xmlwriter-start-attribute-ns | function.xmlwriter-set-indent | function.xmlwriter-set-indent-string | function.xmlwriter-output-memory | function.xmlwriter-open-uri | function.xmlwriter-open-memory | function.xmlwriter-full-end-element | function.xmlwriter-flush | function.xmlwriter-end-pi | function.xmlwriter-end-element | function.xmlwriter-end-dtd | function.xmlwriter-end-dtd-entity | function.xmlwriter-end-dtd-element | function.xmlwriter-end-dtd-attlist | function.xmlwriter-end-document | function.xmlwriter-end-comment | function.xmlwriter-end-cdata | function.xmlwriter-end-attribute | function.xmlrpc-set-type | function.xmlrpc-server-register-method | function.xmlrpc-server-register-introspection-callback | function.xmlrpc-server-destroy | function.xmlrpc-server-create | function.xmlrpc-server-call-method | function.xmlrpc-server-add-introspection-data | function.xmlrpc-parse-method-descriptions | function.xmlrpc-is-fault | function.xmlrpc-get-type | function.xmlrpc-encode | function.xmlrpc-encode-request | function.xmlrpc-decode | function.xmlrpc-decode-request | function.xml-set-unparsed-entity-decl-handler | function.xml-set-start-namespace-decl-handler | function.xml-set-processing-instruction-handler | function.xml-set-object | function.xml-set-notation-decl-handler | function.xml-set-external-entity-ref-handler | function.xml-set-end-namespace-decl-handler | function.xml-set-element-handler | function.xml-set-default-handler | function.xml-set-character-data-handler | function.xml-parser-set-option | function.xml-parser-get-option | function.xml-parser-free | function.xml-parser-create | function.xml-parser-create-ns | function.xml-parse | function.xml-parse-into-struct | function.xml-get-error-code | function.xml-get-current-line-number | function.xml-get-current-column-number | function.xml-get-current-byte-index | function.xml-error-string | function.xdiff-string-patch | function.xdiff-string-patch-binary | function.xdiff-string-merge3 | function.xdiff-string-diff | function.xdiff-string-diff-binary | function.xdiff-file-patch | function.xdiff-file-patch-binary | function.xdiff-file-merge3 | function.xdiff-file-diff | function.xdiff-file-diff-binary | function.xattr-supported | function.xattr-set | function.xattr-remove | function.xattr-list | function.xattr-get | function.wordwrap | function.win32-stop-service | function.win32-start-service | function.win32-start-service-ctrl-dispatcher | function.win32-set-service-status | function.win32-query-service-status | function.win32-ps-stat-proc | function.win32-ps-stat-mem | function.win32-ps-list-procs | function.win32-get-last-control-message | function.win32-delete-service | function.win32-create-service | function.wddx-unserialize | function.wddx-serialize-vars | function.wddx-serialize-value | function.wddx-packet-start | function.wddx-packet-end | function.wddx-deserialize | function.wddx-add-vars | function.w32api-set-call-method | function.w32api-register-function | function.w32api-invoke-function | function.w32api-init-dtype | function.w32api-deftype | function.vsprintf | function.vprintf | function.vpopmail-set-user-quota | function.vpopmail-passwd | function.vpopmail-error | function.vpopmail-del-user | function.vpopmail-del-domain | function.vpopmail-del-domain-ex | function.vpopmail-auth-user | function.vpopmail-alias-get | function.vpopmail-alias-get-all | function.vpopmail-alias-del | function.vpopmail-alias-del-domain | function.vpopmail-alias-add | function.vpopmail-add-user | function.vpopmail-add-domain | function.vpopmail-add-domain-ex | function.vpopmail-add-alias-domain | function.vpopmail-add-alias-domain-ex | function.virtual | function.vfprintf | function.version-compare | function.variant-xor | function.variant-sub | function.variant-set | function.variant-set-type | function.variant-round | function.variant-pow | function.variant-or | function.variant-not | function.variant-neg | function.variant-mul | function.variant-mod | function.variant-int | function.variant-imp | function.variant-idiv | function.variant-get-type | function.variant-fix | function.variant-eqv | function.variant-div | function.variant-date-to-timestamp | function.variant-date-from-timestamp | function.variant-cmp | function.variant-cat | function.variant-cast | function.variant-and | function.variant-add | function.variant-abs | function.var-export | function.var-dump | function.utf8-encode | function.utf8-decode | function.usort | function.usleep | function.user-error | function.use-soap-error-handler | function.urlencode | function.urldecode | function.unset | function.unserialize | function.unregister-tick-function | function.unpack | function.unlink | function.unixtojd | function.uniqid | function.unicode-set-subst-char | function.unicode-set-error-mode | function.unicode-semantics | function.unicode-get-subst-char | function.unicode-get-error-mode | function.unicode-encode | function.unicode-decode | function.umask | function.uksort | function.udm-set-agent-param | function.udm-open-stored | function.udm-load-ispell-data | function.udm-hash32 | function.udm-get-res-param | function.udm-get-res-field | function.udm-get-doc-count | function.udm-free-res | function.udm-free-ispell-data | function.udm-free-agent | function.udm-find | function.udm-error | function.udm-errno | function.udm-crc32 | function.udm-close-stored | function.udm-clear-search-limits | function.udm-check-stored | function.udm-check-charset | function.udm-cat-path | function.udm-cat-list | function.udm-api-version | function.udm-alloc-agent | function.udm-alloc-agent-array | function.udm-add-search-limit | function.ucwords | function.ucfirst | function.uasort | function.trim | function.trigger-error | function.touch | function.token-name | function.token-get-all | function.tmpfile | function.timezone-transitions-get | function.timezone-open | function.timezone-offset-get | function.timezone-name-get | function.timezone-name-from-abbr | function.timezone-identifiers-list | function.timezone-abbreviations-list | function.time | function.time-sleep-until | function.time-nanosleep | function.tidynode-getparent | function.tidyNode-isText | function.tidyNode-isPhp | function.tidyNode-isJste | function.tidyNode-isHtml | function.tidyNode-isComment | function.tidyNode-isAsp | function.tidyNode-hasSiblings | function.tidyNode-hasChildren | function.tidy-warning-count | function.tidy-setopt | function.tidy-set-encoding | function.tidy-save-config | function.tidy-reset-config | function.tidy-repair-string | function.tidy-repair-file | function.tidy-parse-string | function.tidy-parse-file | function.tidy-node-prev | function.tidy-node-next | function.tidy-node-get-nodes | function.tidy-node-get-attr | function.tidy-load-config | function.tidy-is-xml | function.tidy-is-xhtml | function.tidy-getopt | function.tidy-get-status | function.tidy-get-root | function.tidy-get-release | function.tidy-get-output | function.tidy-get-opt-doc | function.tidy-get-html | function.tidy-get-html-ver | function.tidy-get-head | function.tidy-get-error-buffer | function.tidy-get-config | function.tidy-get-body | function.tidy-error-count | function.tidy-diagnose | function.tidy-construct | function.tidy-config-count | function.tidy-clean-repair | function.tidy-access-count | function.textdomain | function.tempnam | function.tcpwrap-check | function.tanh | function.tan | function.system | function.syslog | function.sys-getloadavg | function.sys-get-temp-dir | function.symlink | function.sybase-unbuffered-query | function.sybase-set-message-handler | function.sybase-select-db | function.sybase-result | function.sybase-query | function.sybase-pconnect | function.sybase-num-rows | function.sybase-num-fields | function.sybase-min-server-severity | function.sybase-min-message-severity | function.sybase-min-error-severity | function.sybase-min-client-severity | function.sybase-get-last-message | function.sybase-free-result | function.sybase-field-seek | function.sybase-fetch-row | function.sybase-fetch-object | function.sybase-fetch-field | function.sybase-fetch-assoc | function.sybase-fetch-array | function.sybase-deadlock-retry-count | function.sybase-data-seek | function.sybase-connect | function.sybase-close | function.sybase-affected-rows | function.swishsearch-setstructure | function.swishsearch-setsort | function.swishsearch-setphrasedelimiter | function.swishsearch-setlimit | function.swishsearch-resetlimit | function.swishsearch-execute | function.swishresults-seekresult | function.swishresults-nextresult | function.swishresults-getremovedstopwords | function.swishresults-getparsedwords | function.swishresult-stem | function.swishresult-getmetalist | function.swish-query | function.swish-prepare | function.swish-getpropertylist | function.swish-getmetalist | function.swish-construct | function.swfvideostream.setdimension | function.swfvideostream.getnumframes | function.swfvideostream.construct | function.swftextfield.setrightmargin | function.swftextfield.setpadding | function.swftextfield.setname | function.swftextfield.setmargins | function.swftextfield.setlinespacing | function.swftextfield.setleftmargin | function.swftextfield.setindentation | function.swftextfield.setheight | function.swftextfield.setfont | function.swftextfield.setcolor | function.swftextfield.setbounds | function.swftextfield.construct | function.swftextfield.align | function.swftextfield.addstring | function.swftextfield.addchars | function.swftext.setspacing | function.swftext.setheight | function.swftext.setfont | function.swftext.setcolor | function.swftext.moveto | function.swftext.getwidth | function.swftext.getutf8width | function.swftext.getleading | function.swftext.getdescent | function.swftext.getascent | function.swftext.construct | function.swftext.addutf8string | function.swftext.addstring | function.swfsprite.stopsound | function.swfsprite.startsound | function.swfsprite.setframes | function.swfsprite.remove | function.swfsprite.nextframe | function.swfsprite.labelframe | function.swfsprite.construct | function.swfsprite.add | function.swfsoundinstance.nomultiple | function.swfsoundinstance.loopoutpoint | function.swfsoundinstance.loopinpoint | function.swfsoundinstance.loopcount | function.swfsound.construct | function.swfshape.setrightfill | function.swfshape.setline | function.swfshape.setleftfill | function.swfshape.movepento | function.swfshape.movepen | function.swfshape.drawlineto | function.swfshape.drawline | function.swfshape.drawglyph | function.swfshape.drawcurveto | function.swfshape.drawcurve | function.swfshape.drawcubicto | function.swfshape.drawcubic | function.swfshape.drawcircle | function.swfshape.drawarc | function.swfshape.construct | function.swfshape.addfill | function.swfprebuiltclip.construct | function.swfmovie.writeexports | function.swfmovie.streammp3 | function.swfmovie.stopsound | function.swfmovie.startsound | function.swfmovie.setrate | function.swfmovie.setframes | function.swfmovie.setdimension | function.swfmovie.setbackground | function.swfmovie.savetofile | function.swfmovie.save | function.swfmovie.remove | function.swfmovie.output | function.swfmovie.nextframe | function.swfmovie.labelframe | function.swfmovie.importfont | function.swfmovie.importchar | function.swfmovie.construct | function.swfmovie.addfont | function.swfmovie.addexport | function.swfmovie.add | function.swfmorph.getshape2 | function.swfmorph.getshape1 | function.swfmorph.construct | function.swfgradient.construct | function.swfgradient.addentry | function.swffontchar.addutf8chars | function.swffontchar.addchars | function.swffont.getwidth | function.swffont.getutf8width | function.swffont.getshape | function.swffont.getleading | function.swffont.getdescent | function.swffont.getascent | function.swffont.construct | function.swffill.skewyto | function.swffill.skewxto | function.swffill.scaleto | function.swffill.rotateto | function.swffill.moveto | function.swfdisplayitem.skewyto | function.swfdisplayitem.skewy | function.swfdisplayitem.skewxto | function.swfdisplayitem.skewx | function.swfdisplayitem.setratio | function.swfdisplayitem.setname | function.swfdisplayitem.setmatrix | function.swfdisplayitem.setmasklevel | function.swfdisplayitem.setdepth | function.swfdisplayitem.scaleto | function.swfdisplayitem.scale | function.swfdisplayitem.rotateto | function.swfdisplayitem.rotate | function.swfdisplayitem.remove | function.swfdisplayitem.multcolor | function.swfdisplayitem.moveto | function.swfdisplayitem.move | function.swfdisplayitem.getyskew | function.swfdisplayitem.getyscale | function.swfdisplayitem.gety | function.swfdisplayitem.getxskew | function.swfdisplayitem.getxscale | function.swfdisplayitem.getx | function.swfdisplayitem.getrot | function.swfdisplayitem.endmask | function.swfdisplayitem.addcolor | function.swfdisplayitem.addaction | function.swfbutton.setup | function.swfbutton.setover | function.swfbutton.setmenu | function.swfbutton.sethit | function.swfbutton.setdown | function.swfbutton.setaction | function.swfbutton.construct | function.swfbutton.addshape | function.swfbutton.addasound | function.swfbutton.addaction | function.swfbitmap.getwidth | function.swfbitmap.getheight | function.swfbitmap.construct | function.swfaction.construct | function.swf-viewport | function.swf-translate | function.swf-textwidth | function.swf-startsymbol | function.swf-startshape | function.swf-startdoaction | function.swf-startbutton | function.swf-showframe | function.swf-shapemoveto | function.swf-shapelineto | function.swf-shapelinesolid | function.swf-shapefillsolid | function.swf-shapefilloff | function.swf-shapefillbitmaptile | function.swf-shapefillbitmapclip | function.swf-shapecurveto3 | function.swf-shapecurveto | function.swf-shapearc | function.swf-setframe | function.swf-setfont | function.swf-scale | function.swf-rotate | function.swf-removeobject | function.swf-pushmatrix | function.swf-posround | function.swf-popmatrix | function.swf-polarview | function.swf-placeobject | function.swf-perspective | function.swf-ortho2 | function.swf-ortho | function.swf-openfile | function.swf-oncondition | function.swf-nextid | function.swf-mulcolor | function.swf-modifyobject | function.swf-lookat | function.swf-labelframe | function.swf-getframe | function.swf-getfontinfo | function.swf-getbitmapinfo | function.swf-fonttracking | function.swf-fontslant | function.swf-fontsize | function.swf-endsymbol | function.swf-endshape | function.swf-enddoaction | function.swf-endbutton | function.swf-definetext | function.swf-definerect | function.swf-definepoly | function.swf-defineline | function.swf-definefont | function.swf-definebitmap | function.swf-closefile | function.swf-addcolor | function.swf-addbuttonrecord | function.swf-actionwaitforframe | function.swf-actiontogglequality | function.swf-actionstop | function.swf-actionsettarget | function.swf-actionprevframe | function.swf-actionplay | function.swf-actionnextframe | function.swf-actiongotolabel | function.swf-actiongotoframe | function.swf-actiongeturl | function.svn-update | function.svn-status | function.svn-repos-recover | function.svn-repos-open | function.svn-repos-hotcopy | function.svn-repos-fs | function.svn-repos-fs-commit-txn | function.svn-repos-fs-begin-txn-for-commit | function.svn-repos-create | function.svn-ls | function.svn-log | function.svn-import | function.svn-fs-youngest-rev | function.svn-fs-txn-root | function.svn-fs-revision-root | function.svn-fs-revision-prop | function.svn-fs-props-changed | function.svn-fs-node-prop | function.svn-fs-node-created-rev | function.svn-fs-make-file | function.svn-fs-make-dir | function.svn-fs-is-file | function.svn-fs-is-dir | function.svn-fs-file-length | function.svn-fs-file-contents | function.svn-fs-dir-entries | function.svn-fs-delete | function.svn-fs-copy | function.svn-fs-contents-changed | function.svn-fs-check-path | function.svn-fs-change-node-prop | function.svn-fs-begin-txn2 | function.svn-fs-apply-text | function.svn-fs-abort-txn | function.svn-diff | function.svn-commit | function.svn-client-version | function.svn-cleanup | function.svn-checkout | function.svn-cat | function.svn-auth-set-parameter | function.svn-auth-get-parameter | function.svn-add | function.substr | function.substr-replace | function.substr-count | function.substr-compare | function.strval | function.strtr | function.strtoupper | function.strtotime | function.strtolower | function.strtok | function.strstr | function.strspn | function.strrpos | function.strripos | function.strrev | function.strrchr | function.strptime | function.strpos | function.strpbrk | function.strncmp | function.strncasecmp | function.strnatcmp | function.strnatcasecmp | function.strlen | function.stristr | function.stripslashes | function.stripos | function.stripcslashes | function.strip-tags | function.strftime | function.stream-wrapper-unregister | function.stream-wrapper-restore | function.stream-wrapper-register | function.stream-socket-shutdown | function.stream-socket-server | function.stream-socket-sendto | function.stream-socket-recvfrom | function.stream-socket-pair | function.stream-socket-get-name | function.stream-socket-enable-crypto | function.stream-socket-client | function.stream-socket-accept | function.stream-set-write-buffer | function.stream-set-timeout | function.stream-set-blocking | function.stream-select | function.stream-resolve-include-path | function.stream-register-wrapper | function.stream-get-wrappers | function.stream-get-transports | function.stream-get-meta-data | function.stream-get-line | function.stream-get-filters | function.stream-get-contents | function.stream-filter-remove | function.stream-filter-register | function.stream-filter-prepend | function.stream-filter-append | function.stream-encoding | function.stream-copy-to-stream | function.stream-context-set-params | function.stream-context-set-option | function.stream-context-get-options | function.stream-context-get-default | function.stream-context-create | function.stream-bucket-prepend | function.stream-bucket-new | function.stream-bucket-make-writeable | function.stream-bucket-append | function.strcspn | function.strcoll | function.strcmp | function.strchr | function.strcasecmp | function.str-word-count | function.str-split | function.str-shuffle | function.str-rot13 | function.str-replace | function.str-repeat | function.str-pad | function.str-ireplace | function.str-getcsv | function.stats-variance | function.stats-stat-powersum | function.stats-stat-percentile | function.stats-stat-paired-t | function.stats-stat-noncentral-t | function.stats-stat-innerproduct | function.stats-stat-independent-t | function.stats-stat-gennch | function.stats-stat-correlation | function.stats-stat-binomial-coef | function.stats-standard-deviation | function.stats-skew | function.stats-rand-setall | function.stats-rand-ranf | function.stats-rand-phrase-to-seeds | function.stats-rand-get-seeds | function.stats-rand-gen-t | function.stats-rand-gen-normal | function.stats-rand-gen-noncentral-t | function.stats-rand-gen-noncentral-f | function.stats-rand-gen-noncenral-chisquare | function.stats-rand-gen-iuniform | function.stats-rand-gen-ipoisson | function.stats-rand-gen-int | function.stats-rand-gen-ibinomial | function.stats-rand-gen-ibinomial-negative | function.stats-rand-gen-gamma | function.stats-rand-gen-funiform | function.stats-rand-gen-f | function.stats-rand-gen-exponential | function.stats-rand-gen-chisquare | function.stats-rand-gen-beta | function.stats-kurtosis | function.stats-harmonic-mean | function.stats-dens-weibull | function.stats-dens-t | function.stats-dens-pmf-poisson | function.stats-dens-pmf-hypergeometric | function.stats-dens-pmf-binomial | function.stats-dens-normal | function.stats-dens-negative-binomial | function.stats-dens-logistic | function.stats-dens-laplace | function.stats-dens-gamma | function.stats-dens-f | function.stats-dens-exponential | function.stats-dens-chisquare | function.stats-dens-cauchy | function.stats-dens-beta | function.stats-den-uniform | function.stats-covariance | function.stats-cdf-weibull | function.stats-cdf-uniform | function.stats-cdf-t | function.stats-cdf-poisson | function.stats-cdf-noncentral-f | function.stats-cdf-noncentral-chisquare | function.stats-cdf-negative-binomial | function.stats-cdf-logistic | function.stats-cdf-laplace | function.stats-cdf-gamma | function.stats-cdf-f | function.stats-cdf-exponential | function.stats-cdf-chisquare | function.stats-cdf-cauchy | function.stats-cdf-binomial | function.stats-cdf-beta | function.stats-absolute-deviation | function.stat | function.ssh2-tunnel | function.ssh2-shell | function.ssh2-sftp | function.ssh2-sftp-unlink | function.ssh2-sftp-symlink | function.ssh2-sftp-stat | function.ssh2-sftp-rmdir | function.ssh2-sftp-rename | function.ssh2-sftp-realpath | function.ssh2-sftp-readlink | function.ssh2-sftp-mkdir | function.ssh2-sftp-lstat | function.ssh2-scp-send | function.ssh2-scp-recv | function.ssh2-publickey-remove | function.ssh2-publickey-list | function.ssh2-publickey-init | function.ssh2-publickey-add | function.ssh2-methods-negotiated | function.ssh2-fingerprint | function.ssh2-fetch-stream | function.ssh2-exec | function.ssh2-connect | function.ssh2-auth-pubkey-file | function.ssh2-auth-password | function.ssh2-auth-none | function.ssh2-auth-hostbased-file | function.sscanf | function.srand | function.sqrt | function.sqlite-valid | function.sqlite-unbuffered-query | function.sqlite-udf-encode-binary | function.sqlite-udf-decode-binary | function.sqlite-single-query | function.sqlite-seek | function.sqlite-rewind | function.sqlite-query | function.sqlite-prev | function.sqlite-popen | function.sqlite-open | function.sqlite-num-rows | function.sqlite-num-fields | function.sqlite-next | function.sqlite-libversion | function.sqlite-libencoding | function.sqlite-last-insert-rowid | function.sqlite-last-error | function.sqlite-key | function.sqlite-has-prev | function.sqlite-has-more | function.sqlite-field-name | function.sqlite-fetch-string | function.sqlite-fetch-single | function.sqlite-fetch-object | function.sqlite-fetch-column-types | function.sqlite-fetch-array | function.sqlite-fetch-all | function.sqlite-factory | function.sqlite-exec | function.sqlite-escape-string | function.sqlite-error-string | function.sqlite-current | function.sqlite-create-function | function.sqlite-create-aggregate | function.sqlite-column | function.sqlite-close | function.sqlite-changes | function.sqlite-busy-timeout | function.sqlite-array-query | function.sql-regcase | function.sprintf | function.spliti | function.split | function.spl-object-hash | function.spl-classes | function.spl-autoload | function.spl-autoload-unregister | function.spl-autoload-register | function.spl-autoload-functions | function.spl-autoload-extensions | function.spl-autoload-call | function.soundex | function.sort | function.socket-write | function.socket-strerror | function.socket-shutdown | function.socket-set-timeout | function.socket-set-option | function.socket-set-nonblock | function.socket-set-blocking | function.socket-set-block | function.socket-sendto | function.socket-send | function.socket-select | function.socket-recvfrom | function.socket-recv | function.socket-read | function.socket-listen | function.socket-last-error | function.socket-getsockname | function.socket-getpeername | function.socket-get-status | function.socket-get-option | function.socket-create | function.socket-create-pair | function.socket-create-listen | function.socket-connect | function.socket-close | function.socket-clear-error | function.socket-bind | function.socket-accept | function.soap-soapvar-construct | function.soap-soapserver-setpersistence | function.soap-soapserver-setclass | function.soap-soapserver-handle | function.soap-soapserver-getfunctions | function.soap-soapserver-fault | function.soap-soapserver-construct | function.soap-soapserver-addfunction | function.soap-soapparam-construct | function.soap-soapheader-construct | function.soap-soapfault-construct | function.soap-soapclient-soapcall | function.soap-soapclient-setcookie | function.soap-soapclient-gettypes | function.soap-soapclient-getlastresponseheaders | function.soap-soapclient-getlastresponse | function.soap-soapclient-getlastrequestheaders | function.soap-soapclient-getlastrequest | function.soap-soapclient-getfunctions | function.soap-soapclient-dorequest | function.soap-soapclient-construct | function.soap-soapclient-call | function.snmpwalkoid | function.snmpwalk | function.snmpset | function.snmprealwalk | function.snmpgetnext | function.snmpget | function.snmp-set-valueretrieval | function.snmp-set-quick-print | function.snmp-set-oid-output-format | function.snmp-set-oid-numeric-print | function.snmp-set-enum-print | function.snmp-read-mib | function.snmp-get-valueretrieval | function.snmp-get-quick-print | function.sleep | function.sizeof | function.sinh | function.sin | function.simplexml-load-string | function.simplexml-load-file | function.simplexml-import-dom | function.simplexml-element-xpath | function.simplexml-element-registerXPathNamespace | function.simplexml-element-getNamespaces | function.simplexml-element-getName | function.simplexml-element-getDocNamespaces | function.simplexml-element-construct | function.simplexml-element-children | function.simplexml-element-attributes | function.simplexml-element-asXML | function.simplexml-element-addChild | function.simplexml-element-addAttribute | function.similar-text | function.signeurlpaiement | function.shuffle | function.show-source | function.shmop-write | function.shmop-size | function.shmop-read | function.shmop-open | function.shmop-delete | function.shmop-close | function.shm-remove | function.shm-remove-var | function.shm-put-var | function.shm-get-var | function.shm-detach | function.shm-attach | function.shell-exec | function.sha1 | function.sha1-file | function.settype | function.setrawcookie | function.setlocale | function.setcookie | function.set-time-limit | function.set-magic-quotes-runtime | function.set-include-path | function.set-file-buffer | function.set-exception-handler | function.set-error-handler | function.session-write-close | function.session-unset | function.session-unregister | function.session-start | function.session-set-save-handler | function.session-set-cookie-params | function.session-save-path | function.session-register | function.session-regenerate-id | function.session-pgsql-status | function.session-pgsql-set-field | function.session-pgsql-reset | function.session-pgsql-get-field | function.session-pgsql-get-error | function.session-pgsql-add-error | function.session-name | function.session-module-name | function.session-is-registered | function.session-id | function.session-get-cookie-params | function.session-encode | function.session-destroy | function.session-decode | function.session-commit | function.session-cache-limiter | function.session-cache-expire | function.serialize | function.sem-remove | function.sem-release | function.sem-get | function.sem-acquire | function.scandir | function.sammessage-header | function.sammessage-constructor | function.sammessage-body | function.samconnection-unsubscribe | function.samconnection-subscribe | function.samconnection-setDebug | function.samconnection-send | function.samconnection-rollback | function.samconnection-remove | function.samconnection-receive | function.samconnection-peekall | function.samconnection-peek | function.samconnection-isconnected | function.samconnection-error | function.samconnection-errno | function.samconnection-disconnect | function.samconnection-constructor | function.samconnection-connect | function.samconnection-commit | function.runkit-superglobals | function.runkit-sandbox-output-handler | function.runkit-return-value-used | function.runkit-method-rename | function.runkit-method-remove | function.runkit-method-redefine | function.runkit-method-copy | function.runkit-method-add | function.runkit-lint | function.runkit-lint-file | function.runkit-import | function.runkit-function-rename | function.runkit-function-remove | function.runkit-function-redefine | function.runkit-function-copy | function.runkit-function-add | function.runkit-constant-remove | function.runkit-constant-redefine | function.runkit-constant-add | function.runkit-class-emancipate | function.runkit-class-adopt | function.rtrim | function.rsort | function.rpm-version | function.rpm-open | function.rpm-is-valid | function.rpm-get-tag | function.rpm-close | function.round | function.rmdir | function.rewinddir | function.rewind | function.return | function.restore-include-path | function.restore-exception-handler | function.restore-error-handler | function.reset | function.require | function.require-once | function.rename | function.rename-function | function.register-tick-function | function.register-shutdown-function | function.recode | function.recode-string | function.recode-file | function.realpath | function.readlink | function.readline | function.readline-write-history | function.readline-redisplay | function.readline-read-history | function.readline-on-new-line | function.readline-list-history | function.readline-info | function.readline-completion-function | function.readline-clear-history | function.readline-callback-read-char | function.readline-callback-handler-remove | function.readline-callback-handler-install | function.readline-add-history | function.readgzfile | function.readfile | function.readdir | function.read-exif-data | function.rawurlencode | function.rawurldecode | function.rar-open | function.rar-list | function.rar-entry-get | function.rar-close | function.range | function.rand | function.radius-strerror | function.radius-server-secret | function.radius-send-request | function.radius-request-authenticator | function.radius-put-vendor-string | function.radius-put-vendor-int | function.radius-put-vendor-attr | function.radius-put-vendor-addr | function.radius-put-string | function.radius-put-int | function.radius-put-attr | function.radius-put-addr | function.radius-get-vendor-attr | function.radius-get-attr | function.radius-demangle | function.radius-demangle-mppe-key | function.radius-cvt-string | function.radius-cvt-int | function.radius-cvt-addr | function.radius-create-request | function.radius-config | function.radius-close | function.radius-auth-open | function.radius-add-server | function.radius-acct-open | function.rad2deg | function.quotemeta | function.quoted-printable-decode | function.qdom-tree | function.qdom-error | function.px-update-record | function.px-timestamp2string | function.px-set-value | function.px-set-targetencoding | function.px-set-tablename | function.px-set-parameter | function.px-set-blob-file | function.px-retrieve-record | function.px-put-record | function.px-open-fp | function.px-numrecords | function.px-numfields | function.px-new | function.px-insert-record | function.px-get-value | function.px-get-schema | function.px-get-record | function.px-get-parameter | function.px-get-info | function.px-get-field | function.px-delete | function.px-delete-record | function.px-date2string | function.px-create-fp | function.px-close | function.putenv | function.pspell-suggest | function.pspell-store-replacement | function.pspell-save-wordlist | function.pspell-new | function.pspell-new-personal | function.pspell-new-config | function.pspell-config-save-repl | function.pspell-config-runtogether | function.pspell-config-repl | function.pspell-config-personal | function.pspell-config-mode | function.pspell-config-ignore | function.pspell-config-dict-dir | function.pspell-config-data-dir | function.pspell-config-create | function.pspell-clear-session | function.pspell-check | function.pspell-add-to-session | function.pspell-add-to-personal | function.ps-translate | function.ps-symbol | function.ps-symbol-width | function.ps-symbol-name | function.ps-stroke | function.ps-stringwidth | function.ps-string-geometry | function.ps-show2 | function.ps-show | function.ps-show-xy2 | function.ps-show-xy | function.ps-show-boxed | function.ps-shfill | function.ps-shading | function.ps-shading-pattern | function.ps-setpolydash | function.ps-setoverprintmode | function.ps-setmiterlimit | function.ps-setlinewidth | function.ps-setlinejoin | function.ps-setlinecap | function.ps-setgray | function.ps-setfont | function.ps-setflat | function.ps-setdash | function.ps-setcolor | function.ps-set-value | function.ps-set-text-pos | function.ps-set-parameter | function.ps-set-info | function.ps-set-border-style | function.ps-set-border-dash | function.ps-set-border-color | function.ps-scale | function.ps-save | function.ps-rotate | function.ps-restore | function.ps-rect | function.ps-place-image | function.ps-open-memory-image | function.ps-open-image | function.ps-open-image-file | function.ps-open-file | function.ps-new | function.ps-moveto | function.ps-makespotcolor | function.ps-lineto | function.ps-include-file | function.ps-hyphenate | function.ps-get-value | function.ps-get-parameter | function.ps-get-buffer | function.ps-findfont | function.ps-fill | function.ps-fill-stroke | function.ps-end-template | function.ps-end-pattern | function.ps-end-page | function.ps-delete | function.ps-curveto | function.ps-continue-text | function.ps-closepath | function.ps-closepath-stroke | function.ps-close | function.ps-close-image | function.ps-clip | function.ps-circle | function.ps-begin-template | function.ps-begin-pattern | function.ps-begin-page | function.ps-arcn | function.ps-arc | function.ps-add-weblink | function.ps-add-pdflink | function.ps-add-note | function.ps-add-locallink | function.ps-add-launchlink | function.ps-add-bookmark | function.property-exists | function.proc-terminate | function.proc-open | function.proc-nice | function.proc-get-status | function.proc-close | function.printf | function.printer-write | function.printer-start-page | function.printer-start-doc | function.printer-set-option | function.printer-select-pen | function.printer-select-font | function.printer-select-brush | function.printer-open | function.printer-logical-fontheight | function.printer-list | function.printer-get-option | function.printer-end-page | function.printer-end-doc | function.printer-draw-text | function.printer-draw-roundrect | function.printer-draw-rectangle | function.printer-draw-pie | function.printer-draw-line | function.printer-draw-elipse | function.printer-draw-chord | function.printer-draw-bmp | function.printer-delete-pen | function.printer-delete-font | function.printer-delete-dc | function.printer-delete-brush | function.printer-create-pen | function.printer-create-font | function.printer-create-dc | function.printer-create-brush | function.printer-close | function.printer-abort | function.print | function.print-r | function.prev | function.preg-split | function.preg-replace | function.preg-replace-callback | function.preg-quote | function.preg-match | function.preg-match-all | function.preg-last-error | function.preg-grep | function.pow | function.posix-uname | function.posix-ttyname | function.posix-times | function.posix-strerror | function.posix-setuid | function.posix-setsid | function.posix-setpgid | function.posix-setgid | function.posix-seteuid | function.posix-setegid | function.posix-mknod | function.posix-mkfifo | function.posix-kill | function.posix-isatty | function.posix-initgroups | function.posix-getuid | function.posix-getsid | function.posix-getrlimit | function.posix-getpwuid | function.posix-getpwnam | function.posix-getppid | function.posix-getpid | function.posix-getpgrp | function.posix-getpgid | function.posix-getlogin | function.posix-getgroups | function.posix-getgrnam | function.posix-getgrgid | function.posix-getgid | function.posix-geteuid | function.posix-getegid | function.posix-getcwd | function.posix-get-last-error | function.posix-ctermid | function.posix-access | function.pos | function.popen | function.png2wbmp | function.pi | function.phpversion | function.phpinfo | function.phpcredits | function.php-uname | function.php-strip-whitespace | function.php-sapi-name | function.php-logo-guid | function.php-ini-scanned-files | function.php-ini-loaded-file | function.php-check-syntax | function.pg-version | function.pg-update | function.pg-untrace | function.pg-unescape-bytea | function.pg-tty | function.pg-transaction-status | function.pg-trace | function.pg-set-error-verbosity | function.pg-set-client-encoding | function.pg-send-query | function.pg-send-query-params | function.pg-send-prepare | function.pg-send-execute | function.pg-select | function.pg-result-status | function.pg-result-seek | function.pg-result-error | function.pg-result-error-field | function.pg-query | function.pg-query-params | function.pg-put-line | function.pg-prepare | function.pg-port | function.pg-ping | function.pg-pconnect | function.pg-parameter-status | function.pg-options | function.pg-num-rows | function.pg-num-fields | function.pg-meta-data | function.pg-lo-write | function.pg-lo-unlink | function.pg-lo-tell | function.pg-lo-seek | function.pg-lo-read | function.pg-lo-read-all | function.pg-lo-open | function.pg-lo-import | function.pg-lo-export | function.pg-lo-create | function.pg-lo-close | function.pg-last-oid | function.pg-last-notice | function.pg-last-error | function.pg-insert | function.pg-host | function.pg-get-result | function.pg-get-pid | function.pg-get-notify | function.pg-free-result | function.pg-field-type | function.pg-field-type-oid | function.pg-field-table | function.pg-field-size | function.pg-field-prtlen | function.pg-field-num | function.pg-field-name | function.pg-field-is-null | function.pg-fetch-row | function.pg-fetch-result | function.pg-fetch-object | function.pg-fetch-assoc | function.pg-fetch-array | function.pg-fetch-all | function.pg-fetch-all-columns | function.pg-execute | function.pg-escape-string | function.pg-escape-bytea | function.pg-end-copy | function.pg-delete | function.pg-dbname | function.pg-copy-to | function.pg-copy-from | function.pg-convert | function.pg-connection-status | function.pg-connection-reset | function.pg-connection-busy | function.pg-connect | function.pg-close | function.pg-client-encoding | function.pg-cancel-query | function.pg-affected-rows | function.pfsockopen | function.pdf-utf8-to-utf16 | function.pdf-utf32-to-utf16 | function.pdf-utf16-to-utf8 | function.pdf-translate | function.pdf-suspend-page | function.pdf-stroke | function.pdf-stringwidth | function.pdf-skew | function.pdf-show | function.pdf-show-xy | function.pdf-show-boxed | function.pdf-shfill | function.pdf-shading | function.pdf-shading-pattern | function.pdf-setrgbcolor | function.pdf-setrgbcolor-stroke | function.pdf-setrgbcolor-fill | function.pdf-setpolydash | function.pdf-setmiterlimit | function.pdf-setmatrix | function.pdf-setlinewidth | function.pdf-setlinejoin | function.pdf-setlinecap | function.pdf-setgray | function.pdf-setgray-stroke | function.pdf-setgray-fill | function.pdf-setfont | function.pdf-setflat | function.pdf-setdashpattern | function.pdf-setdash | function.pdf-setcolor | function.pdf-set-word-spacing | function.pdf-set-value | function.pdf-set-text-rise | function.pdf-set-text-rendering | function.pdf-set-text-pos | function.pdf-set-text-matrix | function.pdf-set-parameter | function.pdf-set-leading | function.pdf-set-layer-dependency | function.pdf-set-info | function.pdf-set-info-title | function.pdf-set-info-subject | function.pdf-set-info-keywords | function.pdf-set-info-creator | function.pdf-set-info-author | function.pdf-set-horiz-scaling | function.pdf-set-gstate | function.pdf-set-duration | function.pdf-set-char-spacing | function.pdf-set-border-style | function.pdf-set-border-dash | function.pdf-set-border-color | function.pdf-scale | function.pdf-save | function.pdf-rotate | function.pdf-resume-page | function.pdf-restore | function.pdf-rect | function.pdf-process-pdi | function.pdf-place-pdi-page | function.pdf-place-image | function.pdf-pcos-get-string | function.pdf-pcos-get-stream | function.pdf-pcos-get-number | function.pdf-open-tiff | function.pdf-open-pdi | function.pdf-open-pdi-page | function.pdf-open-memory-image | function.pdf-open-jpeg | function.pdf-open-image | function.pdf-open-image-file | function.pdf-open-gif | function.pdf-open-file | function.pdf-open-ccitt | function.pdf-new | function.pdf-moveto | function.pdf-makespotcolor | function.pdf-load-image | function.pdf-load-iccprofile | function.pdf-load-font | function.pdf-load-3ddata | function.pdf-lineto | function.pdf-initgraphics | function.pdf-info-textline | function.pdf-info-textflow | function.pdf-info-table | function.pdf-info-matchbox | function.pdf-info-font | function.pdf-get-value | function.pdf-get-pdi-value | function.pdf-get-pdi-parameter | function.pdf-get-parameter | function.pdf-get-minorversion | function.pdf-get-majorversion | function.pdf-get-image-width | function.pdf-get-image-height | function.pdf-get-fontsize | function.pdf-get-fontname | function.pdf-get-font | function.pdf-get-errnum | function.pdf-get-errmsg | function.pdf-get-buffer | function.pdf-get-apiname | function.pdf-fit-textline | function.pdf-fit-textflow | function.pdf-fit-table | function.pdf-fit-pdi-page | function.pdf-fit-image | function.pdf-findfont | function.pdf-fill | function.pdf-fill-textblock | function.pdf-fill-stroke | function.pdf-fill-pdfblock | function.pdf-fill-imageblock | function.pdf-endpath | function.pdf-end-template | function.pdf-end-pattern | function.pdf-end-page | function.pdf-end-page-ext | function.pdf-end-layer | function.pdf-end-item | function.pdf-end-glyph | function.pdf-end-font | function.pdf-end-document | function.pdf-encoding-set-char | function.pdf-delete | function.pdf-delete-textflow | function.pdf-delete-table | function.pdf-delete-pvf | function.pdf-define-layer | function.pdf-curveto | function.pdf-create-textflow | function.pdf-create-pvf | function.pdf-create-gstate | function.pdf-create-fieldgroup | function.pdf-create-field | function.pdf-create-bookmark | function.pdf-create-annotation | function.pdf-create-action | function.pdf-create-3dview | function.pdf-continue-text | function.pdf-concat | function.pdf-closepath | function.pdf-closepath-stroke | function.pdf-closepath-fill-stroke | function.pdf-close | function.pdf-close-pdi | function.pdf-close-pdi-page | function.pdf-close-image | function.pdf-clip | function.pdf-circle | function.pdf-begin-template | function.pdf-begin-template-ext | function.pdf-begin-pattern | function.pdf-begin-page | function.pdf-begin-page-ext | function.pdf-begin-layer | function.pdf-begin-item | function.pdf-begin-glyph | function.pdf-begin-font | function.pdf-begin-document | function.pdf-attach-file | function.pdf-arcn | function.pdf-arc | function.pdf-add-weblink | function.pdf-add-thumbnail | function.pdf-add-textflow | function.pdf-add-table-cell | function.pdf-add-pdflink | function.pdf-add-outline | function.pdf-add-note | function.pdf-add-nameddest | function.pdf-add-locallink | function.pdf-add-launchlink | function.pdf-add-bookmark | function.pdf-add-annotation | function.pdf-activate-item | function.pcntl-wtermsig | function.pcntl-wstopsig | function.pcntl-wifstopped | function.pcntl-wifsignaled | function.pcntl-wifexited | function.pcntl-wexitstatus | function.pcntl-waitpid | function.pcntl-wait | function.pcntl-signal | function.pcntl-setpriority | function.pcntl-getpriority | function.pcntl-fork | function.pcntl-exec | function.pcntl-alarm | function.pclose | function.pathinfo | function.passthru | function.parsekit-func-arginfo | function.parsekit-compile-string | function.parsekit-compile-file | function.parse-url | function.parse-str | function.parse-ini-file | function.pack | function.ovrimos-rollback | function.ovrimos-result | function.ovrimos-result-all | function.ovrimos-prepare | function.ovrimos-num-rows | function.ovrimos-num-fields | function.ovrimos-longreadlen | function.ovrimos-free-result | function.ovrimos-field-type | function.ovrimos-field-num | function.ovrimos-field-name | function.ovrimos-field-len | function.ovrimos-fetch-row | function.ovrimos-fetch-into | function.ovrimos-execute | function.ovrimos-exec | function.ovrimos-cursor | function.ovrimos-connect | function.ovrimos-commit | function.ovrimos-close | function.override-function | function.overload | function.output-reset-rewrite-vars | function.output-add-rewrite-var | function.ord | function.openssl-x509-read | function.openssl-x509-parse | function.openssl-x509-free | function.openssl-x509-export | function.openssl-x509-export-to-file | function.openssl-x509-checkpurpose | function.openssl-x509-check-private-key | function.openssl-verify | function.openssl-sign | function.openssl-seal | function.openssl-public-encrypt | function.openssl-public-decrypt | function.openssl-private-encrypt | function.openssl-private-decrypt | function.openssl-pkey-new | function.openssl-pkey-get-public | function.openssl-pkey-get-private | function.openssl-pkey-get-details | function.openssl-pkey-free | function.openssl-pkey-export | function.openssl-pkey-export-to-file | function.openssl-pkcs7-verify | function.openssl-pkcs7-sign | function.openssl-pkcs7-encrypt | function.openssl-pkcs7-decrypt | function.openssl-pkcs12-read | function.openssl-pkcs12-export | function.openssl-pkcs12-export-to-file | function.openssl-open | function.openssl-get-publickey | function.openssl-get-privatekey | function.openssl-free-key | function.openssl-error-string | function.openssl-csr-sign | function.openssl-csr-new | function.openssl-csr-get-subject | function.openssl-csr-get-public-key | function.openssl-csr-export | function.openssl-csr-export-to-file | function.openlog | function.opendir | function.openal-stream | function.openal-source-stop | function.openal-source-set | function.openal-source-rewind | function.openal-source-play | function.openal-source-pause | function.openal-source-get | function.openal-source-destroy | function.openal-source-create | function.openal-listener-set | function.openal-listener-get | function.openal-device-open | function.openal-device-close | function.openal-context-suspend | function.openal-context-process | function.openal-context-destroy | function.openal-context-current | function.openal-context-create | function.openal-buffer-loadwav | function.openal-buffer-get | function.openal-buffer-destroy | function.openal-buffer-data | function.openal-buffer-create | function.odbc-tables | function.odbc-tableprivileges | function.odbc-statistics | function.odbc-specialcolumns | function.odbc-setoption | function.odbc-rollback | function.odbc-result | function.odbc-result-all | function.odbc-procedures | function.odbc-procedurecolumns | function.odbc-primarykeys | function.odbc-prepare | function.odbc-pconnect | function.odbc-num-rows | function.odbc-num-fields | function.odbc-next-result | function.odbc-longreadlen | function.odbc-gettypeinfo | function.odbc-free-result | function.odbc-foreignkeys | function.odbc-field-type | function.odbc-field-scale | function.odbc-field-precision | function.odbc-field-num | function.odbc-field-name | function.odbc-field-len | function.odbc-fetch-row | function.odbc-fetch-object | function.odbc-fetch-into | function.odbc-fetch-array | function.odbc-execute | function.odbc-exec | function.odbc-errormsg | function.odbc-error | function.odbc-do | function.odbc-data-source | function.odbc-cursor | function.odbc-connect | function.odbc-commit | function.odbc-columns | function.odbc-columnprivileges | function.odbc-close | function.odbc-close-all | function.odbc-binmode | function.odbc-autocommit | function.octdec | function.ociwritetemporarylob | function.ociwritelobtofile | function.ocistatementtype | function.ocisetprefetch | function.ociserverversion | function.ocisavelobfile | function.ocisavelob | function.ocirowcount | function.ocirollback | function.ociresult | function.ociplogon | function.ociparse | function.ocinumcols | function.ocinlogon | function.ocinewdescriptor | function.ocinewcursor | function.ocinewcollection | function.ocilogon | function.ocilogoff | function.ociloadlob | function.ociinternaldebug | function.ocifreestatement | function.ocifreedesc | function.ocifreecursor | function.ocifreecollection | function.ocifetchstatement | function.ocifetchinto | function.ocifetch | function.ociexecute | function.ocierror | function.ocidefinebyname | function.ocicommit | function.ocicolumntyperaw | function.ocicolumntype | function.ocicolumnsize | function.ocicolumnscale | function.ocicolumnprecision | function.ocicolumnname | function.ocicolumnisnull | function.ocicolltrim | function.ocicollsize | function.ocicollmax | function.ocicollgetelem | function.ocicollassignelem | function.ocicollassign | function.ocicollappend | function.ocicloselob | function.ocicancel | function.ocibindbyname | function.oci-statement-type | function.oci-set-prefetch | function.oci-server-version | function.oci-rollback | function.oci-result | function.oci-pconnect | function.oci-password-change | function.oci-parse | function.oci-num-rows | function.oci-num-fields | function.oci-new-descriptor | function.oci-new-cursor | function.oci-new-connect | function.oci-new-collection | function.oci-lob-writetofile | function.oci-lob-writetemporary | function.oci-lob-write | function.oci-lob-truncate | function.oci-lob-tell | function.oci-lob-size | function.oci-lob-setbuffering | function.oci-lob-seek | function.oci-lob-savefile | function.oci-lob-save | function.oci-lob-rewind | function.oci-lob-read | function.oci-lob-load | function.oci-lob-is-equal | function.oci-lob-import | function.oci-lob-getbuffering | function.oci-lob-free | function.oci-lob-flush | function.oci-lob-export | function.oci-lob-erase | function.oci-lob-eof | function.oci-lob-copy | function.oci-lob-close | function.oci-lob-append | function.oci-internal-debug | function.oci-free-statement | function.oci-field-type | function.oci-field-type-raw | function.oci-field-size | function.oci-field-scale | function.oci-field-precision | function.oci-field-name | function.oci-field-is-null | function.oci-fetch | function.oci-fetch-row | function.oci-fetch-object | function.oci-fetch-assoc | function.oci-fetch-array | function.oci-fetch-all | function.oci-execute | function.oci-error | function.oci-define-by-name | function.oci-connect | function.oci-commit | function.oci-collection-trim | function.oci-collection-size | function.oci-collection-max | function.oci-collection-free | function.oci-collection-element-get | function.oci-collection-element-assign | function.oci-collection-assign | function.oci-collection-append | function.oci-close | function.oci-cancel | function.oci-bind-by-name | function.oci-bind-array-by-name | function.ob-tidyhandler | function.ob-start | function.ob-list-handlers | function.ob-inflatehandler | function.ob-implicit-flush | function.ob-iconv-handler | function.ob-gzhandler | function.ob-get-status | function.ob-get-level | function.ob-get-length | function.ob-get-flush | function.ob-get-contents | function.ob-get-clean | function.ob-flush | function.ob-etaghandler | function.ob-end-flush | function.ob-end-clean | function.ob-deflatehandler | function.ob-clean | function.number-format | function.nthmac | function.nsapi-virtual | function.nsapi-response-headers | function.nsapi-request-headers | function.notes-version | function.notes-unread | function.notes-search | function.notes-nav-create | function.notes-mark-unread | function.notes-mark-read | function.notes-list-msgs | function.notes-header-info | function.notes-find-note | function.notes-drop-db | function.notes-create-note | function.notes-create-db | function.notes-copy-db | function.notes-body | function.nl2br | function.nl-langinfo | function.ngettext | function.next | function.newt-win-ternary | function.newt-win-messagev | function.newt-win-message | function.newt-win-menu | function.newt-win-entries | function.newt-win-choice | function.newt-wait-for-key | function.newt-vertical-scrollbar | function.newt-textbox | function.newt-textbox-set-text | function.newt-textbox-set-height | function.newt-textbox-reflowed | function.newt-textbox-get-num-lines | function.newt-suspend | function.newt-set-suspend-callback | function.newt-set-help-callback | function.newt-scrollbar-set | function.newt-scale | function.newt-scale-set | function.newt-run-form | function.newt-resume | function.newt-resize-screen | function.newt-refresh | function.newt-reflow-text | function.newt-redraw-help-line | function.newt-radiobutton | function.newt-radio-get-current | function.newt-push-help-line | function.newt-pop-window | function.newt-pop-help-line | function.newt-open-window | function.newt-listitem | function.newt-listitem-set | function.newt-listitem-get-data | function.newt-listbox | function.newt-listbox-set-width | function.newt-listbox-set-entry | function.newt-listbox-set-data | function.newt-listbox-set-current | function.newt-listbox-set-current-by-key | function.newt-listbox-select-item | function.newt-listbox-item-count | function.newt-listbox-insert-entry | function.newt-listbox-get-selection | function.newt-listbox-get-current | function.newt-listbox-delete-entry | function.newt-listbox-clear | function.newt-listbox-clear-selection | function.newt-listbox-append-entry | function.newt-label | function.newt-label-set-text | function.newt-init | function.newt-grid-wrapped-window | function.newt-grid-wrapped-window-at | function.newt-grid-v-stacked | function.newt-grid-v-close-stacked | function.newt-grid-simple-window | function.newt-grid-set-field | function.newt-grid-place | function.newt-grid-h-stacked | function.newt-grid-h-close-stacked | function.newt-grid-get-size | function.newt-grid-free | function.newt-grid-basic-window | function.newt-grid-add-components-to-form | function.newt-get-screen-size | function.newt-form | function.newt-form-watch-fd | function.newt-form-set-width | function.newt-form-set-timer | function.newt-form-set-size | function.newt-form-set-height | function.newt-form-set-background | function.newt-form-run | function.newt-form-get-current | function.newt-form-destroy | function.newt-form-add-hot-key | function.newt-form-add-components | function.newt-form-add-component | function.newt-finished | function.newt-entry | function.newt-entry-set | function.newt-entry-set-flags | function.newt-entry-set-filter | function.newt-entry-get-value | function.newt-draw-root-text | function.newt-draw-form | function.newt-delay | function.newt-cursor-on | function.newt-cursor-off | function.newt-create-grid | function.newt-component-takes-focus | function.newt-component-add-callback | function.newt-compact-button | function.newt-cls | function.newt-clear-key-buffer | function.newt-checkbox | function.newt-checkbox-tree | function.newt-checkbox-tree-set-width | function.newt-checkbox-tree-set-entry | function.newt-checkbox-tree-set-entry-value | function.newt-checkbox-tree-set-current | function.newt-checkbox-tree-multi | function.newt-checkbox-tree-get-selection | function.newt-checkbox-tree-get-multi-selection | function.newt-checkbox-tree-get-entry-value | function.newt-checkbox-tree-get-current | function.newt-checkbox-tree-find-item | function.newt-checkbox-tree-add-item | function.newt-checkbox-set-value | function.newt-checkbox-set-flags | function.newt-checkbox-get-value | function.newt-centered-window | function.newt-button | function.newt-button-bar | function.newt-bell | function.ncurses-wvline | function.ncurses-wstandout | function.ncurses-wstandend | function.ncurses-wrefresh | function.ncurses-wnoutrefresh | function.ncurses-wmove | function.ncurses-wmouse-trafo | function.ncurses-whline | function.ncurses-wgetch | function.ncurses-werase | function.ncurses-wcolor-set | function.ncurses-wclear | function.ncurses-wborder | function.ncurses-wattrset | function.ncurses-wattron | function.ncurses-wattroff | function.ncurses-waddstr | function.ncurses-waddch | function.ncurses-vline | function.ncurses-vidattr | function.ncurses-use-extended-names | function.ncurses-use-env | function.ncurses-use-default-colors | function.ncurses-update-panels | function.ncurses-ungetmouse | function.ncurses-ungetch | function.ncurses-typeahead | function.ncurses-top-panel | function.ncurses-timeout | function.ncurses-termname | function.ncurses-termattrs | function.ncurses-start-color | function.ncurses-standout | function.ncurses-standend | function.ncurses-slk-touch | function.ncurses-slk-set | function.ncurses-slk-restore | function.ncurses-slk-refresh | function.ncurses-slk-noutrefresh | function.ncurses-slk-init | function.ncurses-slk-color | function.ncurses-slk-clear | function.ncurses-slk-attrset | function.ncurses-slk-attron | function.ncurses-slk-attroff | function.ncurses-slk-attr | function.ncurses-show-panel | function.ncurses-scrl | function.ncurses-scr-set | function.ncurses-scr-restore | function.ncurses-scr-init | function.ncurses-scr-dump | function.ncurses-savetty | function.ncurses-resetty | function.ncurses-reset-shell-mode | function.ncurses-reset-prog-mode | function.ncurses-replace-panel | function.ncurses-refresh | function.ncurses-raw | function.ncurses-qiflush | function.ncurses-putp | function.ncurses-prefresh | function.ncurses-pnoutrefresh | function.ncurses-panel-window | function.ncurses-panel-below | function.ncurses-panel-above | function.ncurses-pair-content | function.ncurses-noraw | function.ncurses-noqiflush | function.ncurses-nonl | function.ncurses-noecho | function.ncurses-nocbreak | function.ncurses-nl | function.ncurses-newwin | function.ncurses-newpad | function.ncurses-new-panel | function.ncurses-napms | function.ncurses-mvwaddstr | function.ncurses-mvvline | function.ncurses-mvinch | function.ncurses-mvhline | function.ncurses-mvgetch | function.ncurses-mvdelch | function.ncurses-mvcur | function.ncurses-mvaddstr | function.ncurses-mvaddnstr | function.ncurses-mvaddchstr | function.ncurses-mvaddchnstr | function.ncurses-mvaddch | function.ncurses-move | function.ncurses-move-panel | function.ncurses-mousemask | function.ncurses-mouseinterval | function.ncurses-mouse-trafo | function.ncurses-meta | function.ncurses-longname | function.ncurses-killchar | function.ncurses-keypad | function.ncurses-keyok | function.ncurses-isendwin | function.ncurses-instr | function.ncurses-insstr | function.ncurses-insertln | function.ncurses-insdelln | function.ncurses-insch | function.ncurses-init | function.ncurses-init-pair | function.ncurses-init-color | function.ncurses-inch | function.ncurses-hline | function.ncurses-hide-panel | function.ncurses-has-key | function.ncurses-has-il | function.ncurses-has-ic | function.ncurses-has-colors | function.ncurses-halfdelay | function.ncurses-getyx | function.ncurses-getmouse | function.ncurses-getmaxyx | function.ncurses-getch | function.ncurses-flushinp | function.ncurses-flash | function.ncurses-filter | function.ncurses-erasechar | function.ncurses-erase | function.ncurses-end | function.ncurses-echochar | function.ncurses-echo | function.ncurses-doupdate | function.ncurses-delwin | function.ncurses-deleteln | function.ncurses-delch | function.ncurses-delay-output | function.ncurses-del-panel | function.ncurses-define-key | function.ncurses-def-shell-mode | function.ncurses-def-prog-mode | function.ncurses-curs-set | function.ncurses-color-set | function.ncurses-color-content | function.ncurses-clrtoeol | function.ncurses-clrtobot | function.ncurses-clear | function.ncurses-cbreak | function.ncurses-can-change-color | function.ncurses-bottom-panel | function.ncurses-border | function.ncurses-bkgdset | function.ncurses-bkgd | function.ncurses-beep | function.ncurses-baudrate | function.ncurses-attrset | function.ncurses-attron | function.ncurses-attroff | function.ncurses-assume-default-colors | function.ncurses-addstr | function.ncurses-addnstr | function.ncurses-addchstr | function.ncurses-addchnstr | function.ncurses-addch | function.natsort | function.natcasesort | function.mysqli-slave-query | function.mysqli-set-opt | function.mysqli-send-query | function.mysqli-send-long-data | function.mysqli-rpl-query-type | function.mysqli-rpl-probe | function.mysqli-rpl-parse-enabled | function.mysqli-report | function.mysqli-param-count | function.mysqli-master-query | function.mysqli-get-metadata | function.mysqli-fetch | function.mysqli-execute | function.mysqli-escape-string | function.mysqli-enable-rpl-parse | function.mysqli-enable-reads-from-master | function.mysqli-disable-rpl-parse | function.mysqli-disable-reads-from-master | function.mysqli-client-encoding | function.mysqli-bind-result | function.mysqli-bind-param | function.mysql-unbuffered-query | function.mysql-thread-id | function.mysql-tablename | function.mysql-stat | function.mysql-set-charset | function.mysql-select-db | function.mysql-result | function.mysql-real-escape-string | function.mysql-query | function.mysql-ping | function.mysql-pconnect | function.mysql-num-rows | function.mysql-num-fields | function.mysql-list-tables | function.mysql-list-processes | function.mysql-list-fields | function.mysql-list-dbs | function.mysql-insert-id | function.mysql-info | function.mysql-get-server-info | function.mysql-get-proto-info | function.mysql-get-host-info | function.mysql-get-client-info | function.mysql-free-result | function.mysql-field-type | function.mysql-field-table | function.mysql-field-seek | function.mysql-field-name | function.mysql-field-len | function.mysql-field-flags | function.mysql-fetch-row | function.mysql-fetch-object | function.mysql-fetch-lengths | function.mysql-fetch-field | function.mysql-fetch-assoc | function.mysql-fetch-array | function.mysql-escape-string | function.mysql-error | function.mysql-errno | function.mysql-drop-db | function.mysql-db-query | function.mysql-db-name | function.mysql-data-seek | function.mysql-create-db | function.mysql-connect | function.mysql-close | function.mysql-client-encoding | function.mysql-change-user | function.mysql-affected-rows | function.mt-srand | function.mt-rand | function.mt-getrandmax | function.mssql-select-db | function.mssql-rows-affected | function.mssql-result | function.mssql-query | function.mssql-pconnect | function.mssql-num-rows | function.mssql-num-fields | function.mssql-next-result | function.mssql-min-message-severity | function.mssql-min-error-severity | function.mssql-init | function.mssql-guid-string | function.mssql-get-last-message | function.mssql-free-statement | function.mssql-free-result | function.mssql-field-type | function.mssql-field-seek | function.mssql-field-name | function.mssql-field-length | function.mssql-fetch-row | function.mssql-fetch-object | function.mssql-fetch-field | function.mssql-fetch-batch | function.mssql-fetch-assoc | function.mssql-fetch-array | function.mssql-execute | function.mssql-data-seek | function.mssql-connect | function.mssql-close | function.mssql-bind | function.msql | function.msql-tablename | function.msql-select-db | function.msql-result | function.msql-regcase | function.msql-query | function.msql-pconnect | function.msql-numrows | function.msql-numfields | function.msql-num-rows | function.msql-num-fields | function.msql-list-tables | function.msql-list-fields | function.msql-list-dbs | function.msql-free-result | function.msql-fieldtype | function.msql-fieldtable | function.msql-fieldname | function.msql-fieldlen | function.msql-fieldflags | function.msql-field-type | function.msql-field-table | function.msql-field-seek | function.msql-field-name | function.msql-field-len | function.msql-field-flags | function.msql-fetch-row | function.msql-fetch-object | function.msql-fetch-field | function.msql-fetch-array | function.msql-error | function.msql-drop-db | function.msql-dbname | function.msql-db-query | function.msql-data-seek | function.msql-createdb | function.msql-create-db | function.msql-connect | function.msql-close | function.msql-affected-rows | function.msg-stat-queue | function.msg-set-queue | function.msg-send | function.msg-remove-queue | function.msg-receive | function.msg-queue-exists | function.msg-get-queue | function.msession-unlock | function.msession-uniq | function.msession-timeout | function.msession-set | function.msession-set-data | function.msession-set-array | function.msession-randstr | function.msession-plugin | function.msession-lock | function.msession-listvar | function.msession-list | function.msession-inc | function.msession-get | function.msession-get-data | function.msession-get-array | function.msession-find | function.msession-disconnect | function.msession-destroy | function.msession-create | function.msession-count | function.msession-connect | function.mqseries-strerror | function.mqseries-set | function.mqseries-put1 | function.mqseries-put | function.mqseries-open | function.mqseries-inq | function.mqseries-get | function.mqseries-disc | function.mqseries-connx | function.mqseries-conn | function.mqseries-cmit | function.mqseries-close | function.mqseries-begin | function.mqseries-back | function.move-uploaded-file | function.money-format | function.mktime | function.mkdir | function.ming-useswfversion | function.ming-useconstants | function.ming-setswfcompression | function.ming-setscale | function.ming-setcubicthreshold | function.ming-keypress | function.min | function.mime-content-type | function.microtime | function.mhash | function.mhash-keygen-s2k | function.mhash-get-hash-name | function.mhash-get-block-size | function.mhash-count | function.method-exists | function.metaphone | function.memory-get-usage | function.memory-get-peak-usage | function.memcache-debug | function.mdecrypt-generic | function.md5 | function.md5-file | function.mcrypt-ofb | function.mcrypt-module-self-test | function.mcrypt-module-open | function.mcrypt-module-is-block-mode | function.mcrypt-module-is-block-algorithm | function.mcrypt-module-is-block-algorithm-mode | function.mcrypt-module-get-supported-key-sizes | function.mcrypt-module-get-algo-key-size | function.mcrypt-module-get-algo-block-size | function.mcrypt-module-close | function.mcrypt-list-modes | function.mcrypt-list-algorithms | function.mcrypt-get-key-size | function.mcrypt-get-iv-size | function.mcrypt-get-cipher-name | function.mcrypt-get-block-size | function.mcrypt-generic | function.mcrypt-generic-init | function.mcrypt-generic-end | function.mcrypt-generic-deinit | function.mcrypt-encrypt | function.mcrypt-enc-self-test | function.mcrypt-enc-is-block-mode | function.mcrypt-enc-is-block-algorithm | function.mcrypt-enc-is-block-algorithm-mode | function.mcrypt-enc-get-supported-key-sizes | function.mcrypt-enc-get-modes-name | function.mcrypt-enc-get-key-size | function.mcrypt-enc-get-iv-size | function.mcrypt-enc-get-block-size | function.mcrypt-enc-get-algorithms-name | function.mcrypt-ecb | function.mcrypt-decrypt | function.mcrypt-create-iv | function.mcrypt-cfb | function.mcrypt-cbc | function.mb-substr | function.mb-substr-count | function.mb-substitute-character | function.mb-strwidth | function.mb-strtoupper | function.mb-strtolower | function.mb-strstr | function.mb-strrpos | function.mb-strripos | function.mb-strrichr | function.mb-strrchr | function.mb-strpos | function.mb-strlen | function.mb-stristr | function.mb-stripos | function.mb-strimwidth | function.mb-strcut | function.mb-split | function.mb-send-mail | function.mb-regex-set-options | function.mb-regex-encoding | function.mb-preferred-mime-name | function.mb-parse-str | function.mb-output-handler | function.mb-list-encodings | function.mb-language | function.mb-internal-encoding | function.mb-http-output | function.mb-http-input | function.mb-get-info | function.mb-eregi | function.mb-eregi-replace | function.mb-ereg | function.mb-ereg-search | function.mb-ereg-search-setpos | function.mb-ereg-search-regs | function.mb-ereg-search-pos | function.mb-ereg-search-init | function.mb-ereg-search-getregs | function.mb-ereg-search-getpos | function.mb-ereg-replace | function.mb-ereg-match | function.mb-encode-numericentity | function.mb-encode-mimeheader | function.mb-detect-order | function.mb-detect-encoding | function.mb-decode-numericentity | function.mb-decode-mimeheader | function.mb-convert-variables | function.mb-convert-kana | function.mb-convert-encoding | function.mb-convert-case | function.mb-check-encoding | function.maxdb-warning-count | function.maxdb-use-result | function.maxdb-thread-safe | function.maxdb-thread-id | function.maxdb-store-result | function.maxdb-stmt-store-result | function.maxdb-stmt-sqlstate | function.maxdb-stmt-send-long-data | function.maxdb-stmt-result-metadata | function.maxdb-stmt-reset | function.maxdb-stmt-prepare | function.maxdb-stmt-param-count | function.maxdb-stmt-num-rows | function.maxdb-stmt-init | function.maxdb-stmt-free-result | function.maxdb-stmt-fetch | function.maxdb-stmt-execute | function.maxdb-stmt-error | function.maxdb-stmt-errno | function.maxdb-stmt-data-seek | function.maxdb-stmt-close | function.maxdb-stmt-close-long-data | function.maxdb-stmt-bind-result | function.maxdb-stmt-bind-param | function.maxdb-stmt-affected-rows | function.maxdb-stat | function.maxdb-ssl-set | function.maxdb-sqlstate | function.maxdb-set-opt | function.maxdb-server-init | function.maxdb-server-end | function.maxdb-send-query | function.maxdb-send-long-data | function.maxdb-select-db | function.maxdb-rpl-query-type | function.maxdb-rpl-probe | function.maxdb-rpl-parse-enabled | function.maxdb-rollback | function.maxdb-report | function.maxdb-real-query | function.maxdb-real-escape-string | function.maxdb-real-connect | function.maxdb-query | function.maxdb-prepare | function.maxdb-ping | function.maxdb-param-count | function.maxdb-options | function.maxdb-num-rows | function.maxdb-num-fields | function.maxdb-next-result | function.maxdb-multi-query | function.maxdb-more-results | function.maxdb-master-query | function.maxdb-kill | function.maxdb-insert-id | function.maxdb-init | function.maxdb-info | function.maxdb-get-server-version | function.maxdb-get-server-info | function.maxdb-get-proto-info | function.maxdb-get-metadata | function.maxdb-get-host-info | function.maxdb-get-client-version | function.maxdb-get-client-info | function.maxdb-free-result | function.maxdb-field-tell | function.maxdb-field-seek | function.maxdb-field-count | function.maxdb-fetch | function.maxdb-fetch-row | function.maxdb-fetch-object | function.maxdb-fetch-lengths | function.maxdb-fetch-fields | function.maxdb-fetch-field | function.maxdb-fetch-field-direct | function.maxdb-fetch-assoc | function.maxdb-fetch-array | function.maxdb-execute | function.maxdb-escape-string | function.maxdb-error | function.maxdb-errno | function.maxdb-enable-rpl-parse | function.maxdb-enable-reads-from-master | function.maxdb-embedded-connect | function.maxdb-dump-debug-info | function.maxdb-disable-rpl-parse | function.maxdb-disable-reads-from-master | function.maxdb-debug | function.maxdb-data-seek | function.maxdb-connect | function.maxdb-connect-error | function.maxdb-connect-errno | function.maxdb-commit | function.maxdb-close | function.maxdb-close-long-data | function.maxdb-client-encoding | function.maxdb-character-set-name | function.maxdb-change-user | function.maxdb-bind-result | function.maxdb-bind-param | function.maxdb-autocommit | function.maxdb-affected-rows | function.max | function.main | function.mailparse-uudecode-all | function.mailparse-stream-encode | function.mailparse-rfc822-parse-addresses | function.mailparse-msg-parse | function.mailparse-msg-parse-file | function.mailparse-msg-get-structure | function.mailparse-msg-get-part | function.mailparse-msg-get-part-data | function.mailparse-msg-free | function.mailparse-msg-extract-whole-part-file | function.mailparse-msg-extract-part | function.mailparse-msg-extract-part-file | function.mailparse-msg-create | function.mailparse-determine-best-xfer-encoding | function.mail | function.m-verifysslcert | function.m-verifyconnection | function.m-validateidentifier | function.m-uwait | function.m-transsend | function.m-transnew | function.m-transkeyval | function.m-transinqueue | function.m-transactionssent | function.m-sslcert-gen-hash | function.m-settimeout | function.m-setssl | function.m-setssl-files | function.m-setssl-cafile | function.m-setip | function.m-setdropfile | function.m-setblocking | function.m-returnstatus | function.m-responseparam | function.m-responsekeys | function.m-parsecommadelimited | function.m-numrows | function.m-numcolumns | function.m-monitor | function.m-maxconntimeout | function.m-iscommadelimited | function.m-initengine | function.m-initconn | function.m-getheader | function.m-getcommadelimited | function.m-getcellbynum | function.m-getcell | function.m-destroyengine | function.m-destroyconn | function.m-deletetrans | function.m-connectionerror | function.m-connect | function.m-completeauthorizations | function.m-checkstatus | function.lzf-optimized-for | function.lzf-decompress | function.lzf-compress | function.ltrim | function.lstat | function.long2ip | function.log1p | function.log10 | function.log | function.localtime | function.localeconv | function.locale-set-default | function.locale-get-default | function.list | function.linkinfo | function.link | function.libxml-use-internal-errors | function.libxml-set-streams-context | function.libxml-get-last-error | function.libxml-get-errors | function.libxml-clear-errors | function.levenshtein | function.ldap-unbind | function.ldap-t61-to-8859 | function.ldap-start-tls | function.ldap-sort | function.ldap-set-rebind-proc | function.ldap-set-option | function.ldap-search | function.ldap-sasl-bind | function.ldap-rename | function.ldap-read | function.ldap-parse-result | function.ldap-parse-reference | function.ldap-next-reference | function.ldap-next-entry | function.ldap-next-attribute | function.ldap-modify | function.ldap-mod-replace | function.ldap-mod-del | function.ldap-mod-add | function.ldap-list | function.ldap-get-values | function.ldap-get-values-len | function.ldap-get-option | function.ldap-get-entries | function.ldap-get-dn | function.ldap-get-attributes | function.ldap-free-result | function.ldap-first-reference | function.ldap-first-entry | function.ldap-first-attribute | function.ldap-explode-dn | function.ldap-error | function.ldap-errno | function.ldap-err2str | function.ldap-dn2ufn | function.ldap-delete | function.ldap-count-entries | function.ldap-connect | function.ldap-compare | function.ldap-close | function.ldap-bind | function.ldap-add | function.ldap-8859-to-t61 | function.lchown | function.lchgrp | function.lcg-value | function.lcfirst | function.ksort | function.krsort | function.key | function.kadm5-modify-principal | function.kadm5-init-with-password | function.kadm5-get-principals | function.kadm5-get-principal | function.kadm5-get-policies | function.kadm5-flush | function.kadm5-destroy | function.kadm5-delete-principal | function.kadm5-create-principal | function.kadm5-chpass-principal | function.juliantojd | function.json-encode | function.json-decode | function.jpeg2wbmp | function.join | function.jewishtojd | function.jdtounix | function.jdtojulian | function.jdtojewish | function.jdtogregorian | function.jdtofrench | function.jdmonthname | function.jddayofweek | function.java-last-exception-get | function.java-last-exception-clear | function.iterator-to-array | function.iterator-count | function.isset | function.is-writeable | function.is-writable | function.is-uploaded-file | function.is-unicode | function.is-subclass-of | function.is-string | function.is-soap-fault | function.is-scalar | function.is-resource | function.is-real | function.is-readable | function.is-object | function.is-numeric | function.is-null | function.is-nan | function.is-long | function.is-link | function.is-integer | function.is-int | function.is-infinite | function.is-float | function.is-finite | function.is-file | function.is-executable | function.is-double | function.is-dir | function.is-callable | function.is-buffer | function.is-bool | function.is-binary | function.is-array | function.is-a | function.iptcparse | function.iptcembed | function.ip2long | function.intval | function.intl-is-failure | function.intl-get-error-message | function.intl-get-error-code | function.intl-error-name | function.interface-exists | function.ini-set | function.ini-restore | function.ini-get | function.ini-get-all | function.ini-alter | function.ingres-rollback | function.ingres-query | function.ingres-pconnect | function.ingres-num-rows | function.ingres-num-fields | function.ingres-field-type | function.ingres-field-scale | function.ingres-field-precision | function.ingres-field-nullable | function.ingres-field-name | function.ingres-field-length | function.ingres-fetch-row | function.ingres-fetch-object | function.ingres-fetch-array | function.ingres-errsqlstate | function.ingres-error | function.ingres-errno | function.ingres-cursor | function.ingres-connect | function.ingres-commit | function.ingres-close | function.ingres-autocommit | function.inet-pton | function.inet-ntop | function.include | function.include-once | function.in-array | function.import-request-variables | function.implode | function.imap-utf8 | function.imap-utf7-encode | function.imap-utf7-decode | function.imap-unsubscribe | function.imap-undelete | function.imap-uid | function.imap-timeout | function.imap-thread | function.imap-subscribe | function.imap-status | function.imap-sort | function.imap-setflag-full | function.imap-setacl | function.imap-set-quota | function.imap-search | function.imap-scanmailbox | function.imap-savebody | function.imap-rfc822-write-address | function.imap-rfc822-parse-headers | function.imap-rfc822-parse-adrlist | function.imap-reopen | function.imap-renamemailbox | function.imap-qprint | function.imap-ping | function.imap-open | function.imap-num-recent | function.imap-num-msg | function.imap-msgno | function.imap-mime-header-decode | function.imap-mailboxmsginfo | function.imap-mail | function.imap-mail-move | function.imap-mail-copy | function.imap-mail-compose | function.imap-lsub | function.imap-listsubscribed | function.imap-listscan | function.imap-listmailbox | function.imap-list | function.imap-last-error | function.imap-headers | function.imap-headerinfo | function.imap-header | function.imap-getsubscribed | function.imap-getmailboxes | function.imap-getacl | function.imap-get-quotaroot | function.imap-get-quota | function.imap-fetchstructure | function.imap-fetchheader | function.imap-fetchbody | function.imap-fetch-overview | function.imap-expunge | function.imap-errors | function.imap-deletemailbox | function.imap-delete | function.imap-createmailbox | function.imap-close | function.imap-clearflag-full | function.imap-check | function.imap-bodystruct | function.imap-body | function.imap-binary | function.imap-base64 | function.imap-append | function.imap-alerts | function.imap-8bit | function.imagickpixeliterator-synciterator | function.imagickpixeliterator-setiteratorrow | function.imagickpixeliterator-setiteratorlastrow | function.imagickpixeliterator-setiteratorfirstrow | function.imagickpixeliterator-resetiterator | function.imagickpixeliterator-newpixelregioniterator | function.imagickpixeliterator-newpixeliterator | function.imagickpixeliterator-getpreviousiteratorrow | function.imagickpixeliterator-getnextiteratorrow | function.imagickpixeliterator-getiteratorrow | function.imagickpixeliterator-getcurrentiteratorrow | function.imagickpixeliterator-destroy | function.imagickpixeliterator-construct | function.imagickpixeliterator-clear | function.imagickpixel-sethsl | function.imagickpixel-setcolorvalue | function.imagickpixel-setcolor | function.imagickpixel-issimilar | function.imagickpixel-gethsl | function.imagickpixel-getcolorvalue | function.imagickpixel-getcolorcount | function.imagickpixel-getcolorasstring | function.imagickpixel-getcolor | function.imagickpixel-destroy | function.imagickpixel-construct | function.imagickpixel-clear | function.imagickdraw-translate | function.imagickdraw-skewy | function.imagickdraw-skewx | function.imagickdraw-setviewbox | function.imagickdraw-setvectorgraphics | function.imagickdraw-settextundercolor | function.imagickdraw-settextencoding | function.imagickdraw-settextdecoration | function.imagickdraw-settextantialias | function.imagickdraw-settextalignment | function.imagickdraw-setstrokewidth | function.imagickdraw-setstrokepatternurl | function.imagickdraw-setstrokeopacity | function.imagickdraw-setstrokemiterlimit | function.imagickdraw-setstrokelinejoin | function.imagickdraw-setstrokelinecap | function.imagickdraw-setstrokedashoffset | function.imagickdraw-setstrokedasharray | function.imagickdraw-setstrokecolor | function.imagickdraw-setstrokeantialias | function.imagickdraw-setstrokealpha | function.imagickdraw-setgravity | function.imagickdraw-setfontweight | function.imagickdraw-setfontstyle | function.imagickdraw-setfontstretch | function.imagickdraw-setfontsize | function.imagickdraw-setfontfamily | function.imagickdraw-setfont | function.imagickdraw-setfillrule | function.imagickdraw-setfillpatternurl | function.imagickdraw-setfillopacity | function.imagickdraw-setfillcolor | function.imagickdraw-setfillalpha | function.imagickdraw-setclipunits | function.imagickdraw-setcliprule | function.imagickdraw-setclippath | function.imagickdraw-scale | function.imagickdraw-roundrectangle | function.imagickdraw-rotate | function.imagickdraw-render | function.imagickdraw-rectangle | function.imagickdraw-pushpattern | function.imagickdraw-pushdefs | function.imagickdraw-pushclippath | function.imagickdraw-push | function.imagickdraw-poppattern | function.imagickdraw-popdefs | function.imagickdraw-popclippath | function.imagickdraw-pop | function.imagickdraw-polyline | function.imagickdraw-polygon | function.imagickdraw-point | function.imagickdraw-pathstart | function.imagickdraw-pathmovetorelative | function.imagickdraw-pathmovetoabsolute | function.imagickdraw-pathlinetoverticalrelative | function.imagickdraw-pathlinetoverticalabsolute | function.imagickdraw-pathlinetorelative | function.imagickdraw-pathlinetohorizontalrelative | function.imagickdraw-pathlinetohorizontalabsolute | function.imagickdraw-pathlinetoabsolute | function.imagickdraw-pathfinish | function.imagickdraw-pathellipticarcrelative | function.imagickdraw-pathellipticarcabsolute | function.imagickdraw-pathcurvetosmoothrelative | function.imagickdraw-pathcurvetosmoothabsolute | function.imagickdraw-pathcurvetorelative | function.imagickdraw-pathcurvetoquadraticbeziersmoothrelative | function.imagickdraw-pathcurvetoquadraticbeziersmoothabsolute | function.imagickdraw-pathcurvetoquadraticbezierrelative | function.imagickdraw-pathcurvetoquadraticbezierabsolute | function.imagickdraw-pathcurvetoabsolute | function.imagickdraw-pathclose | function.imagickdraw-matte | function.imagickdraw-line | function.imagickdraw-getvectorgraphics | function.imagickdraw-gettextundercolor | function.imagickdraw-gettextencoding | function.imagickdraw-gettextdecoration | function.imagickdraw-gettextantialias | function.imagickdraw-gettextalignment | function.imagickdraw-getstrokewidth | function.imagickdraw-getstrokeopacity | function.imagickdraw-getstrokemiterlimit | function.imagickdraw-getstrokelinejoin | function.imagickdraw-getstrokelinecap | function.imagickdraw-getstrokedashoffset | function.imagickdraw-getstrokedasharray | function.imagickdraw-getstrokecolor | function.imagickdraw-getstrokeantialias | function.imagickdraw-getgravity | function.imagickdraw-getfontweight | function.imagickdraw-getfontstyle | function.imagickdraw-getfontsize | function.imagickdraw-getfontfamily | function.imagickdraw-getfont | function.imagickdraw-getfillrule | function.imagickdraw-getfillopacity | function.imagickdraw-getfillcolor | function.imagickdraw-getclipunits | function.imagickdraw-getcliprule | function.imagickdraw-getclippath | function.imagickdraw-ellipse | function.imagickdraw-destroy | function.imagickdraw-construct | function.imagickdraw-composite | function.imagickdraw-comment | function.imagickdraw-color | function.imagickdraw-clone | function.imagickdraw-clear | function.imagickdraw-circle | function.imagickdraw-bezier | function.imagickdraw-arc | function.imagickdraw-annotation | function.imagickdraw-affine | function.imagick-writeimages | function.imagick-writeimage | function.imagick-whitethresholdimage | function.imagick-waveimage | function.imagick-vignetteimage | function.imagick-valid | function.imagick-unsharpmaskimage | function.imagick-uniqueimagecolors | function.imagick-trimimage | function.imagick-transverseimage | function.imagick-transformimage | function.imagick-tintimage | function.imagick-thumbnailimage | function.imagick-thresholdimage | function.imagick-textureimage | function.imagick-swirlimage | function.imagick-stripimage | function.imagick-stereoimage | function.imagick-steganoimage | function.imagick-spreadimage | function.imagick-spliceimage | function.imagick-solarizeimage | function.imagick-sketchimage | function.imagick-sigmoidalcontrastimage | function.imagick-shearimage | function.imagick-shaveimage | function.imagick-sharpenimage | function.imagick-shadowimage | function.imagick-shadeimage | function.imagick-settype | function.imagick-setsizeoffset | function.imagick-setsize | function.imagick-setsamplingfactors | function.imagick-setresourcelimit | function.imagick-setresolution | function.imagick-setpage | function.imagick-setoption | function.imagick-setlastiterator | function.imagick-setiteratorindex | function.imagick-setinterlacescheme | function.imagick-setimagewhitepoint | function.imagick-setimagevirtualpixelmethod | function.imagick-setimageunits | function.imagick-setimagetype | function.imagick-setimagetickspersecond | function.imagick-setimagescene | function.imagick-setimageresolution | function.imagick-setimagerenderingintent | function.imagick-setimageredprimary | function.imagick-setimageproperty | function.imagick-setimageprofile | function.imagick-setimagepage | function.imagick-setimageorientation | function.imagick-setimageopacity | function.imagick-setimagemattecolor | function.imagick-setimagematte | function.imagick-setimageiterations | function.imagick-setimageinterpolatemethod | function.imagick-setimageinterlacescheme | function.imagick-setimageindex | function.imagick-setimagegreenprimary | function.imagick-setimagegamma | function.imagick-setimageformat | function.imagick-setimagefilename | function.imagick-setimageextent | function.imagick-setimagedispose | function.imagick-setimagedepth | function.imagick-setimagedelay | function.imagick-setimagecompression | function.imagick-setimagecompose | function.imagick-setimagecolorspace | function.imagick-setimagecolormapcolor | function.imagick-setimagechanneldepth | function.imagick-setimagebordercolor | function.imagick-setimageblueprimary | function.imagick-setimagebias | function.imagick-setimagebackgroundcolor | function.imagick-setimage | function.imagick-setformat | function.imagick-setfirstiterator | function.imagick-setfilename | function.imagick-setcompressionquality | function.imagick-setcompression | function.imagick-setbackgroundcolor | function.imagick-sepiatoneimage | function.imagick-separateimagechannel | function.imagick-scaleimage | function.imagick-sampleimage | function.imagick-roundcorners | function.imagick-rotateimage | function.imagick-rollimage | function.imagick-resizeimage | function.imagick-resampleimage | function.imagick-render | function.imagick-removeimageprofile | function.imagick-removeimage | function.imagick-reducenoiseimage | function.imagick-readimagefile | function.imagick-readimageblob | function.imagick-readimage | function.imagick-randomthresholdimage | function.imagick-raiseimage | function.imagick-radialblurimage | function.imagick-queryformats | function.imagick-queryfonts | function.imagick-queryfontmetrics | function.imagick-quantizeimages | function.imagick-quantizeimage | function.imagick-profileimage | function.imagick-previousimage | function.imagick-previewimages | function.imagick-posterizeimage | function.imagick-polaroidimage | function.imagick-pingimagefile | function.imagick-pingimageblob | function.imagick-pingimage | function.imagick-painttransparentimage | function.imagick-paintopaqueimage | function.imagick-paintfloodfillimage | function.imagick-optimizeimagelayers | function.imagick-oilpaintimage | function.imagick-normalizeimage | function.imagick-nextimage | function.imagick-newpseudoimage | function.imagick-newimage | function.imagick-negateimage | function.imagick-motionblurimage | function.imagick-mosaicimages | function.imagick-morphimages | function.imagick-montageimage | function.imagick-modulateimage | function.imagick-minifyimage | function.imagick-medianfilterimage | function.imagick-mattefloodfillimage | function.imagick-mapimage | function.imagick-magnifyimage | function.imagick-linearstretchimage | function.imagick-levelimage | function.imagick-labelimage | function.imagick-implodeimage | function.imagick-identifyimage | function.imagick-haspreviousimage | function.imagick-hasnextimage | function.imagick-getversion | function.imagick-getsizeoffset | function.imagick-getsize | function.imagick-getsamplingfactors | function.imagick-getresourcelimit | function.imagick-getresource | function.imagick-getreleasedate | function.imagick-getquantumrange | function.imagick-getquantumdepth | function.imagick-getpixelregioniterator | function.imagick-getpixeliterator | function.imagick-getpage | function.imagick-getpackagename | function.imagick-getoption | function.imagick-getnumberimages | function.imagick-getiteratorindex | function.imagick-getinterlacescheme | function.imagick-getimagewidth | function.imagick-getimagewhitepoint | function.imagick-getimagevirtualpixelmethod | function.imagick-getimageunits | function.imagick-getimagetype | function.imagick-getimagetotalinkdensity | function.imagick-getimagetickspersecond | function.imagick-getimagesize | function.imagick-getimagesignature | function.imagick-getimagescene | function.imagick-getimageresolution | function.imagick-getimagerenderingintent | function.imagick-getimageregion | function.imagick-getimageredprimary | function.imagick-getimageproperty | function.imagick-getimageproperties | function.imagick-getimageprofiles | function.imagick-getimageprofile | function.imagick-getimagepixelcolor | function.imagick-getimagepage | function.imagick-getimageorientation | function.imagick-getimagemattecolor | function.imagick-getimagematte | function.imagick-getimagemagicklicense | function.imagick-getimagelength | function.imagick-getimageiterations | function.imagick-getimageinterpolatemethod | function.imagick-getimageinterlacescheme | function.imagick-getimageindex | function.imagick-getimagehistogram | function.imagick-getimageheight | function.imagick-getimagegreenprimary | function.imagick-getimagegeometry | function.imagick-getimagegamma | function.imagick-getimageformat | function.imagick-getimagefilename | function.imagick-getimageextrema | function.imagick-getimagedistortion | function.imagick-getimagedispose | function.imagick-getimagedepth | function.imagick-getimagedelay | function.imagick-getimagecompose | function.imagick-getimagecolorspace | function.imagick-getimagecolors | function.imagick-getimagecolormapcolor | function.imagick-getimagechannelstatistics | function.imagick-getimagechannelmean | function.imagick-getimagechannelextrema | function.imagick-getimagechanneldistortion | function.imagick-getimagechanneldepth | function.imagick-getimagebordercolor | function.imagick-getimageblueprimary | function.imagick-getimageblob | function.imagick-getimagebackgroundcolor | function.imagick-getimage | function.imagick-gethomeurl | function.imagick-getformat | function.imagick-getfilename | function.imagick-getcopyright | function.imagick-getcompressionquality | function.imagick-getcompression | function.imagick-gaussianblurimage | function.imagick-gammaimage | function.imagick-fximage | function.imagick-frameimage | function.imagick-flopimage | function.imagick-flipimage | function.imagick-flattenimages | function.imagick-evaluateimage | function.imagick-equalizeimage | function.imagick-enhanceimage | function.imagick-embossimage | function.imagick-edgeimage | function.imagick-drawimage | function.imagick-distortimage | function.imagick-displayimages | function.imagick-displayimage | function.imagick-destroy | function.imagick-despeckleimage | function.imagick-deconstructimages | function.imagick-cyclecolormapimage | function.imagick-current | function.imagick-cropthumbnailimage | function.imagick-cropimage | function.imagick-convolveimage | function.imagick-contraststretchimage | function.imagick-contrastimage | function.imagick-construct | function.imagick-compositeimage | function.imagick-compareimages | function.imagick-compareimagelayers | function.imagick-compareimagechannels | function.imagick-commentimage | function.imagick-combineimages | function.imagick-colorizeimage | function.imagick-colorfloodfillimage | function.imagick-coalesceimages | function.imagick-clutimage | function.imagick-clone | function.imagick-clippathimage | function.imagick-clipimage | function.imagick-clear | function.imagick-chopimage | function.imagick-charcoalimage | function.imagick-borderimage | function.imagick-blurimage | function.imagick-blackthresholdimage | function.imagick-averageimages | function.imagick-appendimages | function.imagick-annotateimage | function.imagick-affinetransformimage | function.imagick-addnoiseimage | function.imagick-addimage | function.imagick-adaptivethresholdimage | function.imagick-adaptivesharpenimage | function.imagick-adaptiveresizeimage | function.imagick-adaptiveblurimage | function.imagexbm | function.imagewbmp | function.imagetypes | function.imagettftext | function.imagettfbbox | function.imagetruecolortopalette | function.imagesy | function.imagesx | function.imagestringup | function.imagestring | function.imagesettile | function.imagesetthickness | function.imagesetstyle | function.imagesetpixel | function.imagesetbrush | function.imagesavealpha | function.imagerotate | function.imagerectangle | function.imagepstext | function.imagepsslantfont | function.imagepsloadfont | function.imagepsfreefont | function.imagepsextendfont | function.imagepsencodefont | function.imagepsbbox | function.imagepolygon | function.imagepng | function.imagepalettecopy | function.imageloadfont | function.imageline | function.imagelayereffect | function.imagejpeg | function.imageistruecolor | function.imageinterlace | function.imagegrabwindow | function.imagegrabscreen | function.imagegif | function.imagegd2 | function.imagegd | function.imagegammacorrect | function.imagefttext | function.imageftbbox | function.imagefontwidth | function.imagefontheight | function.imagefilter | function.imagefilltoborder | function.imagefilledrectangle | function.imagefilledpolygon | function.imagefilledellipse | function.imagefilledarc | function.imagefill | function.imageellipse | function.imagedestroy | function.imagedashedline | function.imagecreatetruecolor | function.imagecreatefromxpm | function.imagecreatefromxbm | function.imagecreatefromwbmp | function.imagecreatefromstring | function.imagecreatefrompng | function.imagecreatefromjpeg | function.imagecreatefromgif | function.imagecreatefromgd2part | function.imagecreatefromgd2 | function.imagecreatefromgd | function.imagecreate | function.imagecopyresized | function.imagecopyresampled | function.imagecopymergegray | function.imagecopymerge | function.imagecopy | function.imageconvolution | function.imagecolortransparent | function.imagecolorstotal | function.imagecolorsforindex | function.imagecolorset | function.imagecolorresolvealpha | function.imagecolorresolve | function.imagecolormatch | function.imagecolorexactalpha | function.imagecolorexact | function.imagecolordeallocate | function.imagecolorclosesthwb | function.imagecolorclosestalpha | function.imagecolorclosest | function.imagecolorat | function.imagecolorallocatealpha | function.imagecolorallocate | function.imagecharup | function.imagechar | function.imagearc | function.imageantialias | function.imagealphablending | function.image2wbmp | function.image-type-to-mime-type | function.image-type-to-extension | function.iis-stop-service | function.iis-stop-server | function.iis-start-service | function.iis-start-server | function.iis-set-server-rights | function.iis-set-script-map | function.iis-set-dir-security | function.iis-set-app-settings | function.iis-remove-server | function.iis-get-service-state | function.iis-get-server-rights | function.iis-get-server-by-path | function.iis-get-server-by-comment | function.iis-get-script-map | function.iis-get-dir-security | function.iis-add-server | function.ignore-user-abort | function.ifxus-write-slob | function.ifxus-tell-slob | function.ifxus-seek-slob | function.ifxus-read-slob | function.ifxus-open-slob | function.ifxus-free-slob | function.ifxus-create-slob | function.ifxus-close-slob | function.ifx-update-char | function.ifx-update-blob | function.ifx-textasvarchar | function.ifx-query | function.ifx-prepare | function.ifx-pconnect | function.ifx-num-rows | function.ifx-num-fields | function.ifx-nullformat | function.ifx-htmltbl-result | function.ifx-getsqlca | function.ifx-get-char | function.ifx-get-blob | function.ifx-free-result | function.ifx-free-char | function.ifx-free-blob | function.ifx-fieldtypes | function.ifx-fieldproperties | function.ifx-fetch-row | function.ifx-errormsg | function.ifx-error | function.ifx-do | function.ifx-create-char | function.ifx-create-blob | function.ifx-copy-blob | function.ifx-connect | function.ifx-close | function.ifx-byteasvarchar | function.ifx-blobinfile-mode | function.ifx-affected-rows | function.idate | function.id3-set-tag | function.id3-remove-tag | function.id3-get-version | function.id3-get-tag | function.id3-get-genre-name | function.id3-get-genre-list | function.id3-get-genre-id | function.id3-get-frame-short-name | function.id3-get-frame-long-name | function.iconv | function.iconv-substr | function.iconv-strrpos | function.iconv-strpos | function.iconv-strlen | function.iconv-set-encoding | function.iconv-mime-encode | function.iconv-mime-decode | function.iconv-mime-decode-headers | function.iconv-get-encoding | function.ibase-wait-event | function.ibase-trans | function.ibase-timefmt | function.ibase-set-event-handler | function.ibase-service-detach | function.ibase-service-attach | function.ibase-server-info | function.ibase-rollback | function.ibase-rollback-ret | function.ibase-restore | function.ibase-query | function.ibase-prepare | function.ibase-pconnect | function.ibase-param-info | function.ibase-num-params | function.ibase-num-fields | function.ibase-name-result | function.ibase-modify-user | function.ibase-maintain-db | function.ibase-gen-id | function.ibase-free-result | function.ibase-free-query | function.ibase-free-event-handler | function.ibase-field-info | function.ibase-fetch-row | function.ibase-fetch-object | function.ibase-fetch-assoc | function.ibase-execute | function.ibase-errmsg | function.ibase-errcode | function.ibase-drop-db | function.ibase-delete-user | function.ibase-db-info | function.ibase-connect | function.ibase-commit | function.ibase-commit-ret | function.ibase-close | function.ibase-blob-open | function.ibase-blob-info | function.ibase-blob-import | function.ibase-blob-get | function.ibase-blob-echo | function.ibase-blob-create | function.ibase-blob-close | function.ibase-blob-cancel | function.ibase-blob-add | function.ibase-backup | function.ibase-affected-rows | function.ibase-add-user | function.hypot | function.hwapi-userlist | function.hwapi-user | function.hwapi-unlock | function.hwapi-srcsofdst | function.hwapi-srcanchors | function.hwapi-setcommittedversion | function.hwapi-replace | function.hwapi-remove | function.hwapi-reason-type | function.hwapi-reason-description | function.hwapi-parents | function.hwapi-objectbyanchor | function.hwapi-object | function.hwapi-object-value | function.hwapi-object-title | function.hwapi-object-remove | function.hwapi-object-new | function.hwapi-object-insert | function.hwapi-object-count | function.hwapi-object-attreditable | function.hwapi-object-assign | function.hwapi-new-content | function.hwapi-move | function.hwapi-lock | function.hwapi-link | function.hwapi-insertdocument | function.hwapi-insertcollection | function.hwapi-insertanchor | function.hwapi-insert | function.hwapi-info | function.hwapi-identify | function.hwapi-hwstat | function.hwapi-hgcsp | function.hwapi-ftstat | function.hwapi-find | function.hwapi-error-reason | function.hwapi-error-count | function.hwapi-dstofsrcanchor | function.hwapi-dstanchors | function.hwapi-dcstat | function.hwapi-dbstat | function.hwapi-copy | function.hwapi-content | function.hwapi-content-read | function.hwapi-content-mimetype | function.hwapi-children | function.hwapi-checkout | function.hwapi-checkin | function.hwapi-attribute | function.hwapi-attribute-values | function.hwapi-attribute-value | function.hwapi-attribute-langdepvalue | function.hwapi-attribute-key | function.hw-who | function.hw-unlock | function.hw-stat | function.hw-setlinkroot | function.hw-root | function.hw-pipedocument | function.hw-pconnect | function.hw-output-document | function.hw-objrec2array | function.hw-new-document | function.hw-mv | function.hw-modifyobject | function.hw-mapid | function.hw-insertobject | function.hw-insertdocument | function.hw-insertanchors | function.hw-insdoc | function.hw-inscoll | function.hw-info | function.hw-incollections | function.hw-identify | function.hw-getusername | function.hw-gettext | function.hw-getsrcbydestobj | function.hw-getremotechildren | function.hw-getremote | function.hw-getrellink | function.hw-getparentsobj | function.hw-getparents | function.hw-getobjectbyqueryobj | function.hw-getobjectbyquerycollobj | function.hw-getobjectbyquerycoll | function.hw-getobjectbyquery | function.hw-getobject | function.hw-getchilddoccollobj | function.hw-getchilddoccoll | function.hw-getchildcollobj | function.hw-getchildcoll | function.hw-getandlock | function.hw-getanchorsobj | function.hw-getanchors | function.hw-free-document | function.hw-errormsg | function.hw-error | function.hw-edittext | function.hw-dummy | function.hw-document-size | function.hw-document-setcontent | function.hw-document-content | function.hw-document-bodytag | function.hw-document-attributes | function.hw-docbyanchorobj | function.hw-docbyanchor | function.hw-deleteobject | function.hw-cp | function.hw-connection-info | function.hw-connect | function.hw-close | function.hw-childrenobj | function.hw-children | function.hw-changeobject | function.hw-array2objrec | function.http-throttle | function.http-support | function.http-send-stream | function.http-send-status | function.http-send-last-modified | function.http-send-file | function.http-send-data | function.http-send-content-type | function.http-send-content-disposition | function.http-request | function.http-request-method-unregister | function.http-request-method-register | function.http-request-method-name | function.http-request-method-exists | function.http-request-body-encode | function.http-redirect | function.http-put-stream | function.http-put-file | function.http-put-data | function.http-post-fields | function.http-post-data | function.http-persistent-handles-ident | function.http-persistent-handles-count | function.http-persistent-handles-clean | function.http-parse-params | function.http-parse-message | function.http-parse-headers | function.http-parse-cookie | function.http-negotiate-language | function.http-negotiate-content-type | function.http-negotiate-charset | function.http-match-request-header | function.http-match-modified | function.http-match-etag | function.http-inflate | function.http-head | function.http-get | function.http-get-request-headers | function.http-get-request-body | function.http-get-request-body-stream | function.http-deflate | function.http-date | function.http-chunked-decode | function.http-cache-last-modified | function.http-cache-etag | function.http-build-url | function.http-build-str | function.http-build-query | function.http-build-cookie | function | function | function | function | function.highlight-string | function.highlight-file | function.hexdec | function.hebrevc | function.hebrev | function.headers-sent | function.headers-list | function.header | function.hash | function.hash-update | function.hash-update-stream | function.hash-update-file | function.hash-init | function.hash-hmac | function.hash-hmac-file | function.hash-final | function.hash-file | function.hash-algos | function.harupage-textrect | function.harupage-textout | function.harupage-stroke | function.harupage-showtextnextline | function.harupage-showtext | function.harupage-setwordspace | function.harupage-setwidth | function.harupage-settextrise | function.harupage-settextrenderingmode | function.harupage-settextmatrix | function.harupage-settextleading | function.harupage-setslideshow | function.harupage-setsize | function.harupage-setrotate | function.harupage-setrgbstroke | function.harupage-setrgbfill | function.harupage-setmiterlimit | function.harupage-setlinewidth | function.harupage-setlinejoin | function.harupage-setlinecap | function.harupage-sethorizontalscaling | function.harupage-setheight | function.harupage-setgraystroke | function.harupage-setgrayfill | function.harupage-setfontandsize | function.harupage-setflatness | function.harupage-setdash | function.harupage-setcmykstroke | function.harupage-setcmykfill | function.harupage-setcharspace | function.harupage-rectangle | function.harupage-movetonextline | function.harupage-moveto | function.harupage-movetextpos | function.harupage-measuretext | function.harupage-lineto | function.harupage-getwordspace | function.harupage-getwidth | function.harupage-gettransmatrix | function.harupage-gettextwidth | function.harupage-gettextrise | function.harupage-gettextrenderingmode | function.harupage-gettextmatrix | function.harupage-gettextleading | function.harupage-getstrokingcolorspace | function.harupage-getrgbstroke | function.harupage-getrgbfill | function.harupage-getmiterlimit | function.harupage-getlinewidth | function.harupage-getlinejoin | function.harupage-getlinecap | function.harupage-gethorizontalscaling | function.harupage-getheight | function.harupage-getgraystroke | function.harupage-getgrayfill | function.harupage-getgmode | function.harupage-getflatness | function.harupage-getfillingcolorspace | function.harupage-getdash | function.harupage-getcurrenttextpos | function.harupage-getcurrentpos | function.harupage-getcurrentfontsize | function.harupage-getcurrentfont | function.harupage-getcmykstroke | function.harupage-getcmykfill | function.harupage-getcharspace | function.harupage-fillstroke | function.harupage-fill | function.harupage-eofillstroke | function.harupage-eofill | function.harupage-endtext | function.harupage-endpath | function.harupage-ellipse | function.harupage-drawimage | function.harupage-curveto3 | function.harupage-curveto2 | function.harupage-curveto | function.harupage-createurlannotation | function.harupage-createtextannotation | function.harupage-createlinkannotation | function.harupage-createdestination | function.harupage-concat | function.harupage-closepath | function.harupage-circle | function.harupage-begintext | function.harupage-arc | function.haruoutline-setopened | function.haruoutline-setdestination | function.haruimage-setmaskimage | function.haruimage-setcolormask | function.haruimage-getwidth | function.haruimage-getsize | function.haruimage-getheight | function.haruimage-getcolorspace | function.haruimage-getbitspercomponent | function.harufont-measuretext | function.harufont-getxheight | function.harufont-getunicodewidth | function.harufont-gettextwidth | function.harufont-getfontname | function.harufont-getencodingname | function.harufont-getdescent | function.harufont-getcapheight | function.harufont-getascent | function.haruencoder-getwritingmode | function.haruencoder-getunicode | function.haruencoder-gettype | function.haruencoder-getbytetype | function.harudoc-usekrfonts | function.harudoc-usekrencodings | function.harudoc-usejpfonts | function.harudoc-usejpencodings | function.harudoc-usecntfonts | function.harudoc-usecntencodings | function.harudoc-usecnsfonts | function.harudoc-usecnsencodings | function.harudoc-setpermission | function.harudoc-setpassword | function.harudoc-setpagesconfiguration | function.harudoc-setpagemode | function.harudoc-setpagelayout | function.harudoc-setopenaction | function.harudoc-setinfodateattr | function.harudoc-setinfoattr | function.harudoc-setencryptionmode | function.harudoc-setcurrentencoder | function.harudoc-setcompressionmode | function.harudoc-savetostream | function.harudoc-save | function.harudoc-resetstream | function.harudoc-reseterror | function.harudoc-readfromstream | function.harudoc-output | function.harudoc-loadtype1 | function.harudoc-loadttf | function.harudoc-loadttc | function.harudoc-loadraw | function.harudoc-loadpng | function.harudoc-loadjpeg | function.harudoc-insertpage | function.harudoc-getstreamsize | function.harudoc-getpagemode | function.harudoc-getpagelayout | function.harudoc-getinfoattr | function.harudoc-getfont | function.harudoc-getencoder | function.harudoc-getcurrentpage | function.harudoc-getcurrentencoder | function.harudoc-createoutline | function.harudoc-construct | function.harudoc-addpagelabel | function.harudoc-addpage | function.harudestination-setxyz | function.harudestination-setfitv | function.harudestination-setfitr | function.harudestination-setfith | function.harudestination-setfitbv | function.harudestination-setfitbh | function.harudestination-setfitb | function.harudestination-setfit | function.haruannotation-setopened | function.haruannotation-seticon | function.haruannotation-sethighlightmode | function.haruannotation-setborderstyle | function.halt-compiler | function.gzwrite | function.gzuncompress | function.gztell | function.gzseek | function.gzrewind | function.gzread | function.gzputs | function.gzpassthru | function.gzopen | function.gzinflate | function.gzgetss | function.gzgets | function.gzgetc | function.gzfile | function.gzeof | function.gzencode | function.gzdeflate | function.gzdecode | function.gzcompress | function.gzclose | function.gregoriantojd | function.grapheme-substr | function.grapheme-strstr | function.grapheme-strrpos | function.grapheme-strripos | function.grapheme-strpos | function.grapheme-strlen | function.grapheme-stristr | function.grapheme-stripos | function.grapheme-extractb | function.grapheme-extract | function.gopher-parsedir | function.gnupg-verify | function.gnupg-sign | function.gnupg-setsignmode | function.gnupg-seterrormode | function.gnupg-setarmor | function.gnupg-keyinfo | function.gnupg-init | function.gnupg-import | function.gnupg-getprotocol | function.gnupg-geterror | function.gnupg-export | function.gnupg-encryptsign | function.gnupg-encrypt | function.gnupg-decryptverify | function.gnupg-decrypt | function.gnupg-clearsignkeys | function.gnupg-clearencryptkeys | function.gnupg-cleardecryptkeys | function.gnupg-addsignkey | function.gnupg-addencryptkey | function.gnupg-adddecryptkey | function.gmstrftime | function.gmp-xor | function.gmp-testbit | function.gmp-sub | function.gmp-strval | function.gmp-sqrtrem | function.gmp-sqrt | function.gmp-sign | function.gmp-setbit | function.gmp-scan1 | function.gmp-scan0 | function.gmp-random | function.gmp-prob-prime | function.gmp-powm | function.gmp-pow | function.gmp-popcount | function.gmp-perfect-square | function.gmp-or | function.gmp-nextprime | function.gmp-neg | function.gmp-mul | function.gmp-mod | function.gmp-legendre | function.gmp-jacobi | function.gmp-invert | function.gmp-intval | function.gmp-init | function.gmp-hamdist | function.gmp-gcdext | function.gmp-gcd | function.gmp-fact | function.gmp-divexact | function.gmp-div | function.gmp-div-r | function.gmp-div-qr | function.gmp-div-q | function.gmp-com | function.gmp-cmp | function.gmp-clrbit | function.gmp-and | function.gmp-add | function.gmp-abs | function.gmmktime | function.gmdate | function.glob | function.gettype | function.gettimeofday | function.gettext | function.getservbyport | function.getservbyname | function.getrusage | function.getrandmax | function.getprotobynumber | function.getprotobyname | function.getopt | function.getmyuid | function.getmypid | function.getmyinode | function.getmygid | function.getmxrr | function.getlastmod | function.getimagesize | function.gethostbynamel | function.gethostbyname | function.gethostbyaddr | function.getenv | function.getdate | function.getcwd | function.getallheaders | function.get-resource-type | function.get-required-files | function.get-parent-class | function.get-object-vars | function.get-meta-tags | function.get-magic-quotes-runtime | function.get-magic-quotes-gpc | function.get-loaded-extensions | function.get-included-files | function.get-include-path | function.get-html-translation-table | function.get-headers | function.get-extension-funcs | function.get-defined-vars | function.get-defined-functions | function.get-defined-constants | function.get-declared-interfaces | function.get-declared-classes | function.get-current-user | function.get-class | function.get-class-vars | function.get-class-methods | function.get-cfg-var | function.get-browser | function.geoip-region-by-name | function.geoip-record-by-name | function.geoip-org-by-name | function.geoip-isp-by-name | function.geoip-id-by-name | function.geoip-db-get-all-info | function.geoip-db-filename | function.geoip-db-avail | function.geoip-database-info | function.geoip-country-name-by-name | function.geoip-country-code3-by-name | function.geoip-country-code-by-name | function.gd-info | function.fwrite | function.function-exists | function.func-num-args | function.func-get-args | function.func-get-arg | function.ftruncate | function.ftp-systype | function.ftp-ssl-connect | function.ftp-size | function.ftp-site | function.ftp-set-option | function.ftp-rmdir | function.ftp-rename | function.ftp-rawlist | function.ftp-raw | function.ftp-quit | function.ftp-pwd | function.ftp-put | function.ftp-pasv | function.ftp-nlist | function.ftp-nb-put | function.ftp-nb-get | function.ftp-nb-fput | function.ftp-nb-fget | function.ftp-nb-continue | function.ftp-mkdir | function.ftp-mdtm | function.ftp-login | function.ftp-get | function.ftp-get-option | function.ftp-fput | function.ftp-fget | function.ftp-exec | function.ftp-delete | function.ftp-connect | function.ftp-close | function.ftp-chmod | function.ftp-chdir | function.ftp-cdup | function.ftp-alloc | function.ftok | function.ftell | function.fstat | function.fsockopen | function.fseek | function.fscanf | function.fribidi-log2vis | function.frenchtojd | function.fread | function.fputs | function.fputcsv | function.fprintf | function.fpassthru | function.fopen | function.fnmatch | function.fmod | function.flush | function.floor | function.flock | function.floatval | function.finfo-set-flags | function.finfo-open | function.finfo-file | function.finfo-close | function.finfo-buffer | function.filter-var | function.filter-var-array | function.filter-list | function.filter-input | function.filter-input-array | function.filter-id | function.filter-has-var | function.filetype | function.filesize | function.filepro | function.filepro-rowcount | function.filepro-retrieve | function.filepro-fieldwidth | function.filepro-fieldtype | function.filepro-fieldname | function.filepro-fieldcount | function.fileperms | function.fileowner | function.filemtime | function.fileinode | function.filegroup | function.filectime | function.fileatime | function.file | function.file-put-contents | function.file-get-contents | function.file-exists | function.fgetss | function.fgets | function.fgetcsv | function.fgetc | function.fflush | function.feof | function.fdf-set-version | function.fdf-set-value | function.fdf-set-target-frame | function.fdf-set-submit-form-action | function.fdf-set-status | function.fdf-set-opt | function.fdf-set-on-import-javascript | function.fdf-set-javascript-action | function.fdf-set-flags | function.fdf-set-file | function.fdf-set-encoding | function.fdf-set-ap | function.fdf-save | function.fdf-save-string | function.fdf-remove-item | function.fdf-open | function.fdf-open-string | function.fdf-next-field-name | function.fdf-header | function.fdf-get-version | function.fdf-get-value | function.fdf-get-status | function.fdf-get-opt | function.fdf-get-flags | function.fdf-get-file | function.fdf-get-encoding | function.fdf-get-attachment | function.fdf-get-ap | function.fdf-error | function.fdf-errno | function.fdf-enum-values | function.fdf-create | function.fdf-close | function.fdf-add-template | function.fdf-add-doc-javascript | function.fclose | function.fbsql-warnings | function.fbsql-username | function.fbsql-tablename | function.fbsql-table-name | function.fbsql-stop-db | function.fbsql-start-db | function.fbsql-set-transaction | function.fbsql-set-password | function.fbsql-set-lob-mode | function.fbsql-set-characterset | function.fbsql-select-db | function.fbsql-rows-fetched | function.fbsql-rollback | function.fbsql-result | function.fbsql-read-clob | function.fbsql-read-blob | function.fbsql-query | function.fbsql-pconnect | function.fbsql-password | function.fbsql-num-rows | function.fbsql-num-fields | function.fbsql-next-result | function.fbsql-list-tables | function.fbsql-list-fields | function.fbsql-list-dbs | function.fbsql-insert-id | function.fbsql-hostname | function.fbsql-get-autostart-info | function.fbsql-free-result | function.fbsql-field-type | function.fbsql-field-table | function.fbsql-field-seek | function.fbsql-field-name | function.fbsql-field-len | function.fbsql-field-flags | function.fbsql-fetch-row | function.fbsql-fetch-object | function.fbsql-fetch-lengths | function.fbsql-fetch-field | function.fbsql-fetch-assoc | function.fbsql-fetch-array | function.fbsql-error | function.fbsql-errno | function.fbsql-drop-db | function.fbsql-db-status | function.fbsql-db-query | function.fbsql-database | function.fbsql-database-password | function.fbsql-data-seek | function.fbsql-create-db | function.fbsql-create-clob | function.fbsql-create-blob | function.fbsql-connect | function.fbsql-commit | function.fbsql-close | function.fbsql-clob-size | function.fbsql-change-user | function.fbsql-blob-size | function.fbsql-autocommit | function.fbsql-affected-rows | function.fam-suspend-monitor | function.fam-resume-monitor | function.fam-pending | function.fam-open | function.fam-next-event | function.fam-monitor-file | function.fam-monitor-directory | function.fam-monitor-collection | function.fam-close | function.fam-cancel-monitor | function.ezmlm-hash | function.extract | function.extension-loaded | function.expm1 | function.explode | function.expect-popen | function.expect-expectl | function.exp | function.exit | function.exif-thumbnail | function.exif-tagname | function.exif-read-data | function.exif-imagetype | function.exec | function.eval | function.escapeshellcmd | function.escapeshellarg | function.error-reporting | function.error-log | function.error-get-last | function.eregi | function.eregi-replace | function.ereg | function.ereg-replace | function.end | function.enchant-dict-suggest | function.enchant-dict-store-replacement | function.enchant-dict-quick-check | function.enchant-dict-is-in-session | function.enchant-dict-get-error | function.enchant-dict-describe | function.enchant-dict-check | function.enchant-dict-add-to-session | function.enchant-dict-add-to-personal | function.enchant-broker-set-ordering | function.enchant-broker-request-pwl-dict | function.enchant-broker-request-dict | function.enchant-broker-list-dicts | function.enchant-broker-init | function.enchant-broker-get-error | function.enchant-broker-free | function.enchant-broker-free-dict | function.enchant-broker-dict-exists | function.enchant-broker-describe | function.empty | function.echo | function.ebcdic2ascii | function.easter-days | function.easter-date | function.each | function.doubleval | function.dotnet-load | function.domxsltstylesheet-result-dump-mem | function.domxsltstylesheet-result-dump-file | function.domxsltstylesheet-process | function.domxml-xslt-version | function.domxml-xslt-stylesheet | function.domxml-xslt-stylesheet-file | function.domxml-xslt-stylesheet-doc | function.domxml-xmltree | function.domxml-version | function.domxml-open-mem | function.domxml-open-file | function.domxml-new-doc | function.domprocessinginstruction-target | function.domprocessinginstruction-data | function.domnode-unlink-node | function.domnode-set-namespace | function.domnode-set-name | function.domnode-set-content | function.domnode-replace-node | function.domnode-replace-child | function.domnode-remove-child | function.domnode-previous-sibling | function.domnode-prefix | function.domnode-parent-node | function.domnode-owner-document | function.domnode-node-value | function.domnode-node-type | function.domnode-node-name | function.domnode-next-sibling | function.domnode-last-child | function.domnode-is-blank-node | function.domnode-insert-before | function.domnode-has-child-nodes | function.domnode-has-attributes | function.domnode-get-content | function.domnode-first-child | function.domnode-dump-node | function.domnode-clone-node | function.domnode-child-nodes | function.domnode-attributes | function.domnode-append-sibling | function.domnode-append-child | function.domnode-add-namespace | function.domelement-tagname | function.domelement-set-attribute | function.domelement-set-attribute-node | function.domelement-remove-attribute | function.domelement-has-attribute | function.domelement-get-elements-by-tagname | function.domelement-get-attribute | function.domelement-get-attribute-node | function.domdocumenttype-system-id | function.domdocumenttype-public-id | function.domdocumenttype-notations | function.domdocumenttype-name | function.domdocumenttype-internal-subset | function.domdocumenttype-entities | function.domdocument-xinclude | function.domdocument-html-dump-mem | function.domdocument-get-elements-by-tagname | function.domdocument-get-element-by-id | function.domdocument-dump-mem | function.domdocument-dump-file | function.domdocument-document-element | function.domdocument-doctype | function.domdocument-create-text-node | function.domdocument-create-processing-instruction | function.domdocument-create-entity-reference | function.domdocument-create-element | function.domdocument-create-element-ns | function.domdocument-create-comment | function.domdocument-create-cdata-section | function.domdocument-create-attribute | function.domdocument-add-root | function.domattribute-value | function.domattribute-specified | function.domattribute-set-value | function.domattribute-name | function.dns-get-record | function.dns-get-mx | function.dns-check-record | function.dngettext | function.dl | function.diskfreespace | function.disk-total-space | function.disk-free-space | function.dirname | function.dio-write | function.dio-truncate | function.dio-tcsetattr | function.dio-stat | function.dio-seek | function.dio-read | function.dio-open | function.dio-fcntl | function.dio-close | function.die | function.dgettext | function.delete | function.deg2rad | function.defined | function.define | function.define-syslog-variables | function.decoct | function.dechex | function.decbin | function.debug-zval-dump | function.debug-print-backtrace | function.debug-backtrace | function.deaggregate | function.dcngettext | function.dcgettext | function.dbx-sort | function.dbx-query | function.dbx-fetch-row | function.dbx-escape-string | function.dbx-error | function.dbx-connect | function.dbx-compare | function.dbx-close | function.dbplus-xunlockrel | function.dbplus-xlockrel | function.dbplus-update | function.dbplus-unselect | function.dbplus-unlockrel | function.dbplus-undoprepare | function.dbplus-undo | function.dbplus-tremove | function.dbplus-tcl | function.dbplus-sql | function.dbplus-setindexbynumber | function.dbplus-setindex | function.dbplus-savepos | function.dbplus-rzap | function.dbplus-runlink | function.dbplus-rsecindex | function.dbplus-rrename | function.dbplus-rquery | function.dbplus-ropen | function.dbplus-rkeys | function.dbplus-restorepos | function.dbplus-resolve | function.dbplus-rcrtlike | function.dbplus-rcrtexact | function.dbplus-rcreate | function.dbplus-rchperm | function.dbplus-prev | function.dbplus-open | function.dbplus-next | function.dbplus-lockrel | function.dbplus-last | function.dbplus-info | function.dbplus-getunique | function.dbplus-getlock | function.dbplus-freerlocks | function.dbplus-freelock | function.dbplus-freealllocks | function.dbplus-flush | function.dbplus-first | function.dbplus-find | function.dbplus-errno | function.dbplus-errcode | function.dbplus-curr | function.dbplus-close | function.dbplus-chdir | function.dbplus-aql | function.dbplus-add | function.dbase-replace-record | function.dbase-pack | function.dbase-open | function.dbase-numrecords | function.dbase-numfields | function.dbase-get-record | function.dbase-get-record-with-names | function.dbase-get-header-info | function.dbase-delete-record | function.dbase-create | function.dbase-close | function.dbase-add-record | function.dba-sync | function.dba-replace | function.dba-popen | function.dba-optimize | function.dba-open | function.dba-nextkey | function.dba-list | function.dba-key-split | function.dba-insert | function.dba-handlers | function.dba-firstkey | function.dba-fetch | function.dba-exists | function.dba-delete | function.dba-close | function.db2-tables | function.db2-table-privileges | function.db2-stmt-errormsg | function.db2-stmt-error | function.db2-statistics | function.db2-special-columns | function.db2-set-option | function.db2-server-info | function.db2-rollback | function.db2-result | function.db2-procedures | function.db2-procedure-columns | function.db2-primary-keys | function.db2-prepare | function.db2-pconnect | function.db2-num-rows | function.db2-num-fields | function.db2-next-result | function.db2-lob-read | function.db2-get-option | function.db2-free-stmt | function.db2-free-result | function.db2-foreign-keys | function.db2-field-width | function.db2-field-type | function.db2-field-scale | function.db2-field-precision | function.db2-field-num | function.db2-field-name | function.db2-field-display-size | function.db2-fetch-row | function.db2-fetch-object | function.db2-fetch-both | function.db2-fetch-assoc | function.db2-fetch-array | function.db2-execute | function.db2-exec | function.db2-escape-string | function.db2-cursor-type | function.db2-connect | function.db2-conn-errormsg | function.db2-conn-error | function.db2-commit | function.db2-columns | function.db2-column-privileges | function.db2-close | function.db2-client-info | function.db2-bind-param | function.db2-autocommit | function.date | function.date-timezone-set | function.date-timezone-get | function.date-time-set | function.date-sunset | function.date-sunrise | function.date-sun-info | function.date-parse | function.date-offset-get | function.date-modify | function.date-isodate-set | function.date-format | function.date-default-timezone-set | function.date-default-timezone-get | function.date-date-set | function.date-create | function.cyrus-unbind | function.cyrus-query | function.cyrus-connect | function.cyrus-close | function.cyrus-bind | function.cyrus-authenticate | function.current | function.curl-version | function.curl-setopt | function.curl-setopt-array | function.curl-multi-select | function.curl-multi-remove-handle | function.curl-multi-init | function.curl-multi-info-read | function.curl-multi-getcontent | function.curl-multi-exec | function.curl-multi-close | function.curl-multi-add-handle | function.curl-init | function.curl-getinfo | function.curl-exec | function.curl-error | function.curl-errno | function.curl-copy-handle | function.curl-close | function.ctype-xdigit | function.ctype-upper | function.ctype-space | function.ctype-punct | function.ctype-print | function.ctype-lower | function.ctype-graph | function.ctype-digit | function.ctype-cntrl | function.ctype-alpha | function.ctype-alnum | function.crypt | function.create-function | function.crc32 | function.crack-opendict | function.crack-getlastmessage | function.crack-closedict | function.crack-check | function.count | function.count-chars | function.cosh | function.cos | function.copy | function.convert-uuencode | function.convert-uudecode | function.convert-cyr-string | function.constant | function.connection-timeout | function.connection-status | function.connection-aborted | function.compact | function.com-set | function.com-release | function.com-propset | function.com-propput | function.com-propget | function.com-print-typeinfo | function.com-message-pump | function.com-load | function.com-load-typelib | function.com-isenum | function.com-invoke | function.com-get | function.com-get-active-object | function.com-event-sink | function.com-create-guid | function.com-addref | function.closelog | function.closedir | function.clearstatcache | function.classkit-method-rename | function.classkit-method-remove | function.classkit-method-redefine | function.classkit-method-copy | function.classkit-method-add | function.classkit-import | function.class-parents | function.class-implements | function.class-exists | function.chunk-split | function.chroot | function.chr | function.chown | function.chop | function.chmod | function.chgrp | function.checkdnsrr | function.checkdate | function.chdir | function.ceil | function.call-user-method | function.call-user-method-array | function.call-user-func | function.call-user-func-array | function.calculhmac | function.calcul-hmac | function.cal-to-jd | function.cal-info | function.cal-from-jd | function.cal-days-in-month | function.bzwrite | function.bzread | function.bzopen | function.bzflush | function.bzerrstr | function.bzerror | function.bzerrno | function.bzdecompress | function.bzcompress | function.bzclose | function.bindtextdomain | function.bindec | function.bind-textdomain-codeset | function.bin2hex | function.bcsub | function.bcsqrt | function.bcscale | function.bcpowmod | function.bcpow | function.bcompiler-write-included-filename | function.bcompiler-write-header | function.bcompiler-write-functions-from-file | function.bcompiler-write-function | function.bcompiler-write-footer | function.bcompiler-write-file | function.bcompiler-write-exe-footer | function.bcompiler-write-constant | function.bcompiler-write-class | function.bcompiler-read | function.bcompiler-parse-class | function.bcompiler-load | function.bcompiler-load-exe | function.bcmul | function.bcmod | function.bcdiv | function.bccomp | function.bcadd | function.bbcode-set-flags | function.bbcode-set-arg-parser | function.bbcode-parse | function.bbcode-destroy | function.bbcode-create | function.bbcode-add-smiley | function.bbcode-add-element | function.basename | function.base64-encode | function.base64-decode | function.base-convert | function.atanh | function.atan2 | function.atan | function.assert | function.assert-options | function.asort | function.asinh | function.asin | function.ascii2ebcdic | function.arsort | function.array | function.array-walk | function.array-walk-recursive | function.array-values | function.array-unshift | function.array-unique | function.array-uintersect | function.array-uintersect-uassoc | function.array-uintersect-assoc | function.array-udiff | function.array-udiff-uassoc | function.array-udiff-assoc | function.array-sum | function.array-splice | function.array-slice | function.array-shift | function.array-search | function.array-reverse | function.array-reduce | function.array-rand | function.array-push | function.array-product | function.array-pop | function.array-pad | function.array-multisort | function.array-merge | function.array-merge-recursive | function.array-map | function.array-keys | function.array-key-exists | function.array-intersect | function.array-intersect-ukey | function.array-intersect-uassoc | function.array-intersect-key | function.array-intersect-assoc | function.array-flip | function.array-filter | function.array-fill | function.array-fill-keys | function.array-diff | function.array-diff-ukey | function.array-diff-uassoc | function.array-diff-key | function.array-diff-assoc | function.array-count-values | function.array-combine | function.array-chunk | function.array-change-key-case | function.apd-set-socket-session-trace | function.apd-set-session | function.apd-set-session-trace | function.apd-set-pprof-trace | function.apd-get-active-symbols | function.apd-echo | function.apd-dump-regular-resources | function.apd-dump-persistent-resources | function.apd-dump-function-table | function.apd-croak | function.apd-continue | function.apd-clunk | function.apd-callstack | function.apd-breakpoint | function.apc-store | function.apc-sma-info | function.apc-load-constants | function.apc-fetch | function.apc-delete | function.apc-define-constants | function.apc-compile-file | function.apc-clear-cache | function.apc-cache-info | function.apc-add | function.apache-setenv | function.apache-response-headers | function.apache-reset-timeout | function.apache-request-headers | function.apache-note | function.apache-lookup-uri | function.apache-getenv | function.apache-get-version | function.apache-get-modules | function.apache-child-terminate | function.aggregation-info | function.aggregate | function.aggregate-properties | function.aggregate-properties-by-regexp | function.aggregate-properties-by-list | function.aggregate-methods | function.aggregate-methods-by-regexp | function.aggregate-methods-by-list | function.aggregate-info | function.addslashes | function.addcslashes | function.acosh | function.acos | function.abs | function.SDO-Sequence-move | function.SDO-Sequence-insert | function.SDO-Sequence-getProperty | function.SDO-Model-Type-isSequencedType | function.SDO-Model-Type-isOpenType | function.SDO-Model-Type-isInstance | function.SDO-Model-Type-isDataType | function.SDO-Model-Type-isAbstractType | function.SDO-Model-Type-getProperty | function.SDO-Model-Type-getProperties | function.SDO-Model-Type-getNamespaceURI | function.SDO-Model-Type-getName | function.SDO-Model-Type-getBaseType | function.SDO-Model-ReflectionDataObject-getType | function.SDO-Model-ReflectionDataObject-getInstanceProperties | function.SDO-Model-ReflectionDataObject-getContainmentProperty | function.SDO-Model-ReflectionDataObject-export | function.SDO-Model-ReflectionDataObject-construct | function.SDO-Model-Property-isMany | function.SDO-Model-Property-isContainment | function.SDO-Model-Property-getType | function.SDO-Model-Property-getName | function.SDO-Model-Property-getDefault | function.SDO-Model-Property-getContainingType | function.SDO-List-insert | function.SDO-Exception-getCause | function.SDO-DataObject-getTypeNamespaceURI | function.SDO-DataObject-getTypeName | function.SDO-DataObject-getSequence | function.SDO-DataObject-getContainer | function.SDO-DataObject-createDataObject | function.SDO-DataObject-clear | function.SDO-DataFactory-create | function.SDO-DAS-XML-saveString | function.SDO-DAS-XML-saveFile | function.SDO-DAS-XML-loadString | function.SDO-DAS-XML-loadFile | function.SDO-DAS-XML-createDocument | function.SDO-DAS-XML-createDataObject | function.SDO-DAS-XML-create | function.SDO-DAS-XML-addTypes | function.SDO-DAS-XML-Document-setXMLVersion | function.SDO-DAS-XML-Document-setXMLDeclaration | function.SDO-DAS-XML-Document-setEncoding | function.SDO-DAS-XML-Document-getRootElementURI | function.SDO-DAS-XML-Document-getRootElementName | function.SDO-DAS-XML-Document-getRootDataObject | function.SDO-DAS-Setting-isSet | function.SDO-DAS-Setting-getValue | function.SDO-DAS-Setting-getPropertyName | function.SDO-DAS-Setting-getPropertyIndex | function.SDO-DAS-Setting-getListIndex | function.SDO-DAS-Relational-executeQuery | function.SDO-DAS-Relational-executePreparedQuery | function.SDO-DAS-Relational-createRootDataObject | function.SDO-DAS-Relational-construct | function.SDO-DAS-Relational-applyChanges | function.SDO-DAS-DataObject-getChangeSummary | function.SDO-DAS-DataFactory-getDataFactory | function.SDO-DAS-DataFactory-addType | function.SDO-DAS-DataFactory-addPropertyToType | function.SDO-DAS-ChangeSummary-isLogging | function.SDO-DAS-ChangeSummary-getOldValues | function.SDO-DAS-ChangeSummary-getOldContainer | function.SDO-DAS-ChangeSummary-getChangedDataObjects | function.SDO-DAS-ChangeSummary-getChangeType | function.SDO-DAS-ChangeSummary-endLogging | function.SDO-DAS-ChangeSummary-beginLogging | function.SCA-getService | function.SCA-createDataObject | function.SCA-SoapProxy-createDataObject | function.SCA-LocalProxy-createDataObject | function.Rar-getVersion | function.Rar-getUnpackedSize | function.Rar-getPackedSize | function.Rar-getName | function.Rar-getMethod | function.Rar-getHostOs | function.Rar-getFileTime | function.Rar-getCrc | function.Rar-getAttr | function.Rar-extract | function.PDO-sqliteCreateFunction | function.PDO-sqliteCreateAggregate | function.PDO-pgsqlLOBUnlink | function.PDO-pgsqlLOBOpen | function.PDO-pgsqlLOBCreate | function.Memcache-setServerParams | function.Memcache-setCompressThreshold | function.Memcache-set | function.Memcache-replace | function.Memcache-pconnect | function.Memcache-increment | function.Memcache-getVersion | function.Memcache-getStats | function.Memcache-getServerStatus | function.Memcache-getExtendedStats | function.Memcache-get | function.Memcache-flush | function.Memcache-delete | function.Memcache-decrement | function.Memcache-connect | function.Memcache-close | function.Memcache-addServer | function.Memcache-add | function.HttpResponse-status | function.HttpResponse-setThrottleDelay | function.HttpResponse-setStream | function.HttpResponse-setLastModified | function.HttpResponse-setHeader | function.HttpResponse-setGzip | function.HttpResponse-setFile | function.HttpResponse-setETag | function.HttpResponse-setData | function.HttpResponse-setContentType | function.HttpResponse-setContentDisposition | function.HttpResponse-setCacheControl | function.HttpResponse-setCache | function.HttpResponse-setBufferSize | function.HttpResponse-send | function.HttpResponse-redirect | function.HttpResponse-guessContentType | function.HttpResponse-getThrottleDelay | function.HttpResponse-getStream | function.HttpResponse-getRequestHeaders | function.HttpResponse-getRequestBodyStream | function.HttpResponse-getRequestBody | function.HttpResponse-getLastModified | function.HttpResponse-getHeader | function.HttpResponse-getGzip | function.HttpResponse-getFile | function.HttpResponse-getETag | function.HttpResponse-getData | function.HttpResponse-getContentType | function.HttpResponse-getContentDisposition | function.HttpResponse-getCacheControl | function.HttpResponse-getCache | function.HttpResponse-getBufferSize | function.HttpResponse-capture | function.HttpRequestPool-socketSelect | function.HttpRequestPool-socketPerform | function.HttpRequestPool-send | function.HttpRequestPool-reset | function.HttpRequestPool-getFinishedRequests | function.HttpRequestPool-getAttachedRequests | function.HttpRequestPool-detach | function.HttpRequestPool-destruct | function.HttpRequestPool-construct | function.HttpRequestPool-attach | function.HttpRequest-setUrl | function.HttpRequest-setSslOptions | function.HttpRequest-setRawPostData | function.HttpRequest-setQueryData | function.HttpRequest-setPutFile | function.HttpRequest-setPutData | function.HttpRequest-setPostFiles | function.HttpRequest-setPostFields | function.HttpRequest-setOptions | function.HttpRequest-setMethod | function.HttpRequest-setHeaders | function.HttpRequest-setCookies | function.HttpRequest-setContentType | function.HttpRequest-send | function.HttpRequest-resetCookies | function.HttpRequest-getUrl | function.HttpRequest-getSslOptions | function.HttpRequest-getResponseStatus | function.HttpRequest-getResponseMessage | function.HttpRequest-getResponseInfo | function.HttpRequest-getResponseHeader | function.HttpRequest-getResponseData | function.HttpRequest-getResponseCookies | function.HttpRequest-getResponseCode | function.HttpRequest-getResponseBody | function.HttpRequest-getRequestMessage | function.HttpRequest-getRawResponseMessage | function.HttpRequest-getRawRequestMessage | function.HttpRequest-getRawPostData | function.HttpRequest-getQueryData | function.HttpRequest-getPutFile | function.HttpRequest-getPutData | function.HttpRequest-getPostFiles | function.HttpRequest-getPostFields | function.HttpRequest-getOptions | function.HttpRequest-getMethod | function.HttpRequest-getHistory | function.HttpRequest-getHeaders | function.HttpRequest-getCookies | function.HttpRequest-getContentType | function.HttpRequest-enableCookies | function.HttpRequest-construct | function.HttpRequest-clearHistory | function.HttpRequest-addSslOptions | function.HttpRequest-addRawPostData | function.HttpRequest-addQueryData | function.HttpRequest-addPutData | function.HttpRequest-addPostFile | function.HttpRequest-addPostFields | function.HttpRequest-addHeaders | function.HttpRequest-addCookies | function.HttpQueryString-xlate | function.HttpQueryString-toString | function.HttpQueryString-toArray | function.HttpQueryString-singleton | function.HttpQueryString-set | function.HttpQueryString-mod | function.HttpQueryString-get | function.HttpQueryString-construct | function.HttpMessage-toString | function.HttpMessage-toMessageTypeObject | function.HttpMessage-setType | function.HttpMessage-setResponseStatus | function.HttpMessage-setResponseCode | function.HttpMessage-setRequestUrl | function.HttpMessage-setRequestMethod | function.HttpMessage-setHttpVersion | function.HttpMessage-setHeaders | function.HttpMessage-setBody | function.HttpMessage-send | function.HttpMessage-reverse | function.HttpMessage-prepend | function.HttpMessage-guessContentType | function.HttpMessage-getType | function.HttpMessage-getResponseStatus | function.HttpMessage-getResponseCode | function.HttpMessage-getRequestUrl | function.HttpMessage-getRequestMethod | function.HttpMessage-getParentMessage | function.HttpMessage-getHttpVersion | function.HttpMessage-getHeaders | function.HttpMessage-getHeader | function.HttpMessage-getBody | function.HttpMessage-fromString | function.HttpMessage-fromEnv | function.HttpMessage-factory | function.HttpMessage-detach | function.HttpMessage-construct | function.HttpMessage-addHeaders | function.HttpInflateStream-update | function.HttpInflateStream-flush | function.HttpInflateStream-finish | function.HttpInflateStream-factory | function.HttpInflateStream-construct | function.HttpDeflateStream-update | function.HttpDeflateStream-flush | function.HttpDeflateStream-finish | function.HttpDeflateStream-factory | function.HttpDeflateStream-construct | funcref | funchand.strings | funchand.setup | funchand.resources | funchand.installation | funchand.constants | funchand.configuration | ftp.setup | ftp.resources | ftp.installation | ftp.examples | ftp.constants | ftp.configuration | fribidi.setup | fribidi.resources | fribidi.installation | fribidi.constants | fribidi.configuration | filters | filters.encryption | filters.convert | filters.compression | filteriterator.valid | filteriterator.rewind | filteriterator.next | filteriterator.key | filteriterator.getinneriterator | filteriterator.current | filter.setup | filter.resources | filter.installation | filter.constants | filter.configuration | filesystem.setup | filesystem.resources | filesystem.installation | filesystem.constants | filesystem.configuration | filepro.setup | filepro.resources | filepro.installation | filepro.constants | filepro.configuration | fileinfo.setup | fileinfo.resources | fileinfo.installation | fileinfo.constants | fileinfo.configuration | features.xforms | features.sessions | features.safe-mode | features.safe-mode.functions | features.remote-files | features.persistent-connections | features.http-auth | features | features.file-upload.put-method | features.file-upload.multiple | features.file-upload | features.file-upload.errors | features.file-upload.common-pitfalls | features.cookies | features.connection-handling | features.commandline | fdf.setup | fdf.resources | fdf.installation | fdf.examples | fdf.constants | fdf.configuration | fbsql.setup | fbsql.resources | fbsql.installation | fbsql.constants | fbsql.configuration | faq.using | faq.obtaining | faq.misc | faq.migration5 | faq.mailinglist | faq.languages | faq.installation | faq | faq | faq.general | faq.databases | faq.com | faq.build | fam.setup | fam.resources | fam.installation | fam.constants | fam.configuration | extname.resources | extname.configuration | extensions.state | extensions | expect.setup | expect.resources | expect.installation | expect.examples | expect.constants | expect.configuration | exif.setup | exif.resources | exif.installation | exif.constants | exif.configuration | exec.setup | exec.resources | exec.installation | exec.constants | exec.configuration | example.xml-map-tags | example.xml-external-entity | errorfunc.setup | errorfunc.resources | errorfunc.installation | errorfunc.examples | errorfunc.constants | errorfunc.configuration | enchant.setup | enchant.resources | enchant.installation | enchant.examples | enchant.constants | enchant.configuration | dotnet.setup | dotnet.resources | dotnet.intro | dotnet.installation | dotnet.constants | dotnet.configuration | domxpath.registernamespace | domxpath.query | domxpath.evaluate | domxpath.construct | domxml.setup | domxml.resources | domxml.installation | domxml.constants | domxml.configuration | domtext.splittext | domtext.iswhitespaceinelementcontent | domtext.construct | domprocessinginstruction.construct | domnotation.props | domnodelist.item | domnode.replacechild | domnode.removechild | domnode.normalize | domnode.lookupprefix | domnode.lookupnamespaceuri | domnode.issupported | domnode.issamenode | domnode.isdefaultnamespace | domnode.insertbefore | domnode.haschildnodes | domnode.hasattributes | domnode.clonenode | domnode.appendchild | domnamednodemap.item | domnamednodemap.getnameditemns | domnamednodemap.getnameditem | domimplementation.hasfeature | domimplementation.createdocumenttype | domimplementation.createdocument | domimplementation.construct | domexception.props | domentityreference.construct | domentity.props | domelement.setidattributens | domelement.setidattributenode | domelement.setidattribute | domelement.setattributens | domelement.setattributenodens | domelement.setattributenode | domelement.setattribute | domelement.removeattributens | domelement.removeattributenode | domelement.removeattribute | domelement.hasattributens | domelement.hasattribute | domelement.getelementsbytagnamens | domelement.getelementsbytagname | domelement.getattributens | domelement.getattributenodens | domelement.getattributenode | domelement.getattribute | domelement.construct | domdocumenttype.props | domdocumentfragment.appendxml | domdocument.xinclude | domdocument.validate | domdocument.schemavalidatesource | domdocument.schemavalidate | domdocument.savexml | domdocument.savehtmlfile | domdocument.savehtml | domdocument.save | domdocument.relaxngvalidatesource | domdocument.relaxngvalidate | domdocument.registernodeclass | domdocument.normalizedocument | domdocument.loadxml | domdocument.loadhtmlfile | domdocument.loadhtml | domdocument.load | domdocument.importnode | domdocument.getelementsbytagnamens | domdocument.getelementsbytagname | domdocument.getelementbyid | domdocument.createtextnode | domdocument.createprocessinginstruction | domdocument.createentityreference | domdocument.createelementns | domdocument.createelement | domdocument.createdocumentfragment | domdocument.createcomment | domdocument.createcdatasection | domdocument.createattributens | domdocument.createattribute | domdocument.construct | domcomment.construct | domcharacterdata.substringdata | domcharacterdata.replacedata | domcharacterdata.insertdata | domcharacterdata.deletedata | domcharacterdata.appenddata | domattr.isid | domattr.construct | dom.setup | dom.resources | dom.installation | dom.constants | dom.configuration | directoryiterator.valid | directoryiterator.rewind | directoryiterator.next | directoryiterator.key | directoryiterator.iswritable | directoryiterator.isreadable | directoryiterator.islink | directoryiterator.isfile | directoryiterator.isexecutable | directoryiterator.isdot | directoryiterator.isdir | directoryiterator.gettype | directoryiterator.getsize | directoryiterator.getperms | directoryiterator.getpathname | directoryiterator.getpath | directoryiterator.getowner | directoryiterator.getmtime | directoryiterator.getinode | directoryiterator.getgroup | directoryiterator.getfilename | directoryiterator.getctime | directoryiterator.getatime | directoryiterator.current | directoryiterator.construct | dir.setup | dir.resources | dir.installation | dir.constants | dir.configuration | dio.setup | dio.resources | dio.installation | dio.constants | dio.configuration | debugger | dbx.setup | dbx.resources | dbx.installation | dbx.configuration | dbplus.setup | dbplus.resources | dbplus.installation | dbplus.constants | dbplus.configuration | dbase.setup | dbase.resources | dbase.installation | dbase.constants | dbase.configuration | dba.setup | dba.resources | dba.installation | dba.examples | dba.constants | dba.configuration | datetime.setup | datetime.resources | datetime.installation | datetime.constants | datetime.configuration | dateformatter.settimezoneid | dateformatter.setpattern | dateformatter.setlenient | dateformatter.setcalendar | dateformatter.parse | dateformatter.localtime | dateformatter.islenient | dateformatter.gettimezoneid | dateformatter.gettimetype | dateformatter.getpattern | dateformatter.getlocale | dateformatter.geterrormessage | dateformatter.geterrorcode | dateformatter.getdatetype | dateformatter.getcalendar | dateformatter.format | dateformatter.create | cyrus.setup | cyrus.resources | cyrus.installation | cyrus.constants | cyrus.configuration | curl.setup | curl.resources | curl.installation | curl.examples | curl.constants | curl.configuration | ctype.setup | ctype.resources | ctype.installation | ctype.constants | ctype.configuration | crack.setup | crack.resources | crack.installation | crack.examples | crack.constants | crack.configuration | copyright | control-structures.while | control-structures.switch | control-structures.if | control-structures.foreach | control-structures.for | control-structures.elseif | control-structures.else | control-structures.do.while | control-structures.declare | control-structures.continue | control-structures.break | control-structures.alternative-syntax | constants.newt.textbox_flags | constants.newt.sense_flags | constants.newt.listbox_flags | constants.newt.keys | constants.newt.grid_flags | constants.newt.form_flags | constants.newt.fd_flags | constants.newt.entry_flags | constants.newt.components_flags | constants.newt.colorsets | constants.newt.cbtree_flags | constants.newt.args_flags | constants.newt.anchor | constants.dbx | configure | configuration | configuration.changes | com.setup | com.resources | com.installation | com.examples | com.examples.arrays | com.error-handling | com.constants | com.configuration | collator.sortwithsortkeys | collator.sort | collator.setstrength | collator.setattribute | collator.getstrength | collator.getlocale | collator.geterrormessage | collator.geterrorcode | collator.getattribute | collator.create | collator.construct | collator.compare | collator.asort | classobj.setup | classobj.resources | classobj.installation | classobj.examples | classobj.constants | classobj.configuration | classkit.setup | classkit.resources | classkit.installation | classkit.constants | classkit.configuration | class.xsltprocessor | class.xmlreader | class.variant | class.swfvideostream | class.swftextfield | class.swftext | class.swfsprite | class.swfsoundinstance | class.swfsound | class.swfshape | class.swfprebuiltclip | class.swfmovie | class.swfmorph | class.swfgradient | class.swffontchar | class.swffont | class.swffill | class.swfdisplayitem | class.swfbutton | class.swfbitmap | class.swfaction | class.simplexmliterator | class.recursiveiteratoriterator | class.recursivedirectoryiterator | class.recursivecachingiterator | class.pdostatement | class.pdo | class.parentiterator | class.numberformatter | class.normalizer | class.mysqli | class.mysqli-stmt | class.mysqli-result | class.mysqli-driver | class.messageformatter | class.locale | class.limititerator | class.imagickpixeliterator | class.imagickpixel | class.imagickdraw | class.imagick | class.httpresponse | class.httprequestpool | class.httprequest | class.httpquerystring | class.httpmessage | class.httpinflatestream | class.httpdeflatestream | class.harupage | class.haruoutline | class.haruimage | class.harufont | class.haruexception | class.haruencoder | class.harudoc | class.harudestination | class.haruannotation | class.filteriterator | class.dotnet | class.domxpath | class.domtext | class.domprocessinginstruction | class.domnotation | class.domnodelist | class.domnode | class.domnamednodemap | class.domimplementation | class.domexception | class.domentityreference | class.domentity | class.domelement | class.domdocumenttype | class.domdocumentfragment | class.domdocument | class.domcomment | class.domcharacterdata | class.domattr | class.directoryiterator | class.dir | class.dateformatter | class.com | class.collator | class.cachingiterator | class.arrayobject | class.arrayiterator | class.PharFileInfo | class.PharException | class.PharData | class.Phar | calendar.setup | calendar.resources | calendar.installation | calendar.constants | calendar.configuration | cachingiterator.valid | cachingiterator.toString | cachingiterator.rewind | cachingiterator.next | cachingiterator.hasnext | bzip2.setup | bzip2.resources | bzip2.installation | bzip2.examples | bzip2.constants | bzip2.configuration | book.zlib | book.zip | book.yaz | book.xslt | book.xsl | book.xmlwriter | book.xmlrpc | book.xmlreader | book.xml | book.xdiff | book.xattr | book.win32service | book.win32ps | book.wddx | book.w32api | book.vpopmail | book.var | book.url | book.uodbc | book.unicode | book.tokenizer | book.tidy | book.tcpwrap | book.sybase | book.swish | book.swf | book.svn | book.strings | book.stream | book.stats | book.ssh2 | book.sqlite | book.spplus | book.spl | book.sockets | book.soap | book.snmp | book.simplexml | book.shmop | book.session | book.session-pgsql | book.sem | book.sdodasrel | book.sdo | book.sdo-das-xml | book.sca | book.sam | book.runkit | book.rpmreader | book.regex | book.recode | book.readline | book.rar | book.radius | book.qtdom | book.pspell | book.ps | book.printer | book.posix | book.phar | book.pgsql | book.pdo | book.pdf | book.pcre | book.pcntl | book.parsekit | book.paradox | book.ovrimos | book.overload | book.outcontrol | book.openssl | book.openal | book.oggvorbis | book.oci8 | book.objaggregation | book.nsapi | book.notes | book.nis | book.newt | book.network | book.net-gopher | book.ncurses | book.mysqli | book.mysql | book.mssql | book.msql | book.msession | book.mqseries | book.mnogosearch | book.misc | book.ming | book.mime-magic | book.mhash | book.memcache | book.mcve | book.mcrypt | book.mbstring | book.maxdb | book.math | book.mailparse | book.mail | book.lzf | book.libxml | book.ldap | book.kadm5 | book.json | book.java | book.intl | book.internals2 | book.ingres | book.info | book.imap | book.imagick | book.image | book.iisfunc | book.ifx | book.id3 | book.iconv | book.ibm-db2 | book.ibase | book.i18n | book.hwapi | book.hw | book.http | book.hash | book.haru | book.gnupg | book.gmp | book.gettext | book.geoip | book.funchand | book.ftp | book.fribidi | book.filter | book.filesystem | book.filepro | book.fileinfo | book.fdf | book.fbsql | book.fam | book.expect | book.exif | book.exec | book.errorfunc | book.enchant | book.dotnet | book.domxml | book.dom | book.dir | book.dio | book.dbx | book.dbplus | book.dbase | book.dba | book.datetime | book.cyrus | book.curl | book.ctype | book.crack | book.com | book.classobj | book.classkit | book.calendar | book.bzip2 | book.bcompiler | book.bc | book.bbcode | book.array | book.apd | book.apc | book.apache | bcompiler.setup | bcompiler.resources | bcompiler.installation | bcompiler.constants | bcompiler.configuration | bc.setup | bc.resources | bc.installation | bc.constants | bc.configuration | bbcode.setup | bbcode.resources | bbcode.installation | bbcode.constants | bbcode.configuration | arrayobject.offsetunset | arrayobject.offsetset | arrayobject.offsetget | arrayobject.offsetexists | arrayobject.getiterator | arrayobject.count | arrayobject.construct | arrayobject.append | arrayiterator.valid | arrayiterator.seek | arrayiterator.rewind | arrayiterator.next | arrayiterator.key | arrayiterator.current | array.setup | array.resources | array.installation | array.constants | array.configuration | appendices | apd.setup | apd.resources | apd.installwin32 | apd.installation | apd.examples | apd.constants | apd.configuration | apc.setup | apc.resources | apc.installation | apc.constants | apc.configuration | apache.setup | apache.resources | apache.installation | apache.constants | apache.configuration | aliases | about.translations | about.translations.fr | about.prototypes | about.phpversions | about.notes | about.more | about | about.howtohelp | about.generate | SCA.examples.understanding-wsdl | SCA.examples.structures | SCA.examples.proxies | SCA.examples.obtaining-wsdl | SCA.examples.nonSCAscript | SCA.examples.errorhandling | SCA.examples.deploy | SCA.examples.calling | PharException.intro.unused |
Le PHP est une langue scripting d'usage universel employée couramment qui approprié particulièrement au développement de Web et peut être enfoncée dans le HTML. Si vous êtes nouveau au PHP et voulez avoir une certaine idée de la façon dont cela fonctionne, essayez le cours d'instruction d'introduction. Après ce, vérifiez le manuel en ligne, et l'exemple archivez les emplacements et certaines des autres ressources disponibles dans la section de liens.