Geschrieben in PHP-Dokumentation am 12. Januar 2010 0 Kommentare »
Setting and Getting Property Values The following examples assume $company is the root of a tree of data objects created from the schema and instance document shown above. Beispiel #1 Access via property name Data object properties can be accessed using the object property access syntax. The following sets the company name to 'Acme'. <?php$company->name = ’Acme’;?> [...]
Geschrieben in PHP-Dokumentation am 12. Januar 2010 0 Kommentare »
Anforderungen Modifying Constants, Functions, Classes, and Methods works with all releases of PHP 4 and PHP 5. No special requirements are necessary. Custom Superglobals are only available in PHP 4.2.0 or later. Sandboxing requires PHP 5.1.0 or later, or PHP 5.0.0 with a special TSRM patch applied. Regardless of which version of PHP is in [...]
Geschrieben in PHP-Dokumentation am 12. Januar 2010 0 Kommentare »
Suchmaschinenerweiterungen mnoGoSearch Installation/Konfiguration Vordefinierte Konstanten mnoGoSearch Funktionen Sphinx ? Sphinx Client Einführung Installation/Konfiguration Vordefinierte Konstanten Beispiele SphinxClient ? The SphinxClient class Swish ? Swish Indexing Einführung Installation/Konfiguration Vordefinierte Konstanten Beispiele Swish Funktionen Solr ? Apache Solr Einführung Installation/Konfiguration Vordefinierte Konstanten Solr Funktionen Beispiele SolrUtils ? The SolrUtils class SolrInputDocument ? The SolrInputDocument class SolrDocument ? [...]
Geschrieben in PHP-Dokumentation am 12. Januar 2010 0 Kommentare »
Type Juggling PHP does not require (or support) explicit type definition in variable declaration; a variable's type is determined by the context in which the variable is used. That is to say, if a string value is assigned to variable $var, $var becomes a string. If an integer value is then assigned to $var, it [...]