Better PHP Documentation
opinionated
Open main menu
Get Started
Documentation
Community
Training
Better PHP Documentation
Close menu
Get Started
Documentation
Community
Training
Log in
Change language:
English
German
Spanish
French
Italian
Japanese
Brazilian Portuguese
Russian
Turkish
Ukrainian
Chinese (Simplified)
Other
Lista esempi
Lista di tutti gli esempi nel manuale
Example#0 - Un esempio introduttivo
Example#1 - Il nostro primo script PHP: ciao.php
Example#2 - Ricevere informazioni sul sistema da PHP
Example#3 - Stampare a video una variable (un elemento d'Array)
Example#4 - Esempi usando le strutture di controllo e le funzioni
Example#5 - Intercalare i modi PHP e HTML
Example#6 - Un semplice form HTML
Example#7 - La stampa video di dati dal nostro form
Example#8 - Debian Install Example with Apache httpd 2
Example#9 - Restarting Apache httpd once PHP is installed
Example#10 - Methods for listing additional PHP packages
Example#11 - Install PHP with MySQL, cURL
Example#12 - DNF Install Example
Example#13 - Restarting Apache once PHP is installed
Example#14 - Methods for listing additional PHP packages
Example#15 - Install PHP with MySQL, GD
Example#16 - OpenBSD Package Install Example
Example#17 - Estratto di lighttpd.conf
Example#18 - Generazione di risponditori FastCGI
Example#19 - Connessione a istanze di php-fastcgi remote
Example#20 - Recommended OpCache configuration
Example#21 - Recommended WinCache configuration
Example#22 - PHP and Apache 2.x as handler
Example#23 - PHP and Apache 2.x as CGI
Example#24 - Configure Apache to run PHP as FastCGI
Example#25 - Command line to configure IIS and PHP
Example#26 - Registry changes
Example#27 - Passing environment variables and PHP settings to a pool
Example#28 - set PHP settings in nginx.conf
Example#29 - phpinfo call
Example#30 - composer.json che richiede un singolo pacchetto
Example#31 - Installazione dell'estensione MongoDB con PIE
Example#32 - php.ini Environment Variables
Example#33 - php.ini example
Example#34 - Apache configuration example
Example#35 - Tag di Apertura e Chiusura di PHP
Example#36 - Escape avanzato con le condizioni
Example#37 - Esempio che mostra il tag di chiusura che racchiude una nuova riga
Example#38 - Casting to Boolean
Example#39 - Interi letterali
Example#40 - Overflow di interi in un sistema a 32 bit
Example#41 - Overflow di interi in un sistema a 64 bit
Example#42 - Syntax Variants
Example#43 - Basic Heredoc example as of PHP 7.3.0
Example#44 - Closing identifier must not be indented further than any lines of the body
Example#45 - Different indentation for body and closing identifier
Example#46 - Continuing an expression after a closing identifier
Example#47 - Closing identifier in body of the string tends to cause ParseError
Example#48 - Invalid example, prior to PHP 7.3.0
Example#49 - Valid example, even prior to PHP 7.3.0
Example#50 - Heredoc string quoting example
Example#51 - Heredoc in arguments example
Example#52 - Using Heredoc to initialize static values
Example#53 - Using double quotes in Heredoc
Example#54 - Nowdoc string quoting example
Example#55 - Nowdoc string quoting example with variables
Example#56 - Static data example
Example#57 - String Interpolation
Example#58 - Interpolating the value of the first dimension of an array or property
Example#59 - Negative numeric indices
Example#60 - Curly Syntax
Example#61 - Some string examples
Example#62 - Example of Illegal String Offsets
Example#63 - Scientific Notation Comparisons
Example#64 - A simple array
Example#65 - Type Casting and Overwriting example
Example#66 - Mixed int and string keys
Example#67 - Indexed arrays without key
Example#68 - Keys not on all elements
Example#69 - Complex Type Casting and Overwriting example
Example#70 - Negative index example
Example#71 - Accessing array elements
Example#72 - Array dereferencing
Example#73 - Using Square Brackets with Arrays
Example#74 - Array Destructuring
Example#75 - Array Destructuring in Foreach
Example#76 - Ignoring Elements
Example#77 - Destructuring Associative Arrays
Example#78 - Swapping Two Variable
Example#79 - Unsetting Intermediate Elements
Example#80 - Key Quoting
Example#81 - More Examples
Example#82 - Converting to an Array
Example#83 - Casting an Object to an Array
Example#84 - Simple array unpacking
Example#85 - Array unpacking with duplicate key
Example#86 - Array Versatility
Example#87 - Using array()
Example#88 - Collection
Example#89 - Changing element in the loop
Example#90 - One-based index
Example#91 - Filling an array
Example#92 - Sorting an array
Example#93 - Recursive and multi-dimensional arrays
Example#94 - Array Copying
Example#95 - Callback example using a Closure
Example#96 - Calling various types of callables with call_user_func
Example#97 - Esempio di tipo di ritorno iterable di un generatore
Example#98 - Dichiarazione di base del tipo classe
Example#99 - Dichiarazione di base del tipo interfaccia
Example#100 - Dichiarazione di base del tipo restituito
Example#101 - Restituzione di un oggetto
Example#102 - Dichiarazione del tipo di argomento nullable
Example#103 - Dichiarazione del tipo restituito nullable
Example#104 - Vecchio modo per rendere gli argomenti nullable
Example#105 - Tipizzazione strict per i valori degli argomenti
Example#106 - Tipizzazione coercitiva per i valori degli argomenti
Example#107 - Tipizzazione strict per i valori di ritorno
Example#108 - Esempio di tipi che vengono forzati in un tipo parte della union
Example#109 - Parametri passati per referenza Tipizzati
Example#110 - Cattura TypeError
Example#111 - Example of types being coerced into a type part of the union
Example#112 - Type Casting
Example#113 - Different Casting Mechanisms
Example#114 - Using Array Offset with a String
Example#115 - Valid variable names
Example#116 - Invalid variable names
Example#117 - Accessing obscure variable names
Example#118 - Default value of an uninitialized variable
Example#119 - Autovivification of an array from an undefined variable
Example#120 - Example of global variable scope
Example#121 - Example of local variable scope
Example#122 - Using global
Example#123 - Using $GLOBALS instead of global
Example#124 - Example demonstrating superglobals and scope
Example#125 - Example demonstrating need for static variables
Example#126 - Example use of static variables
Example#127 - Static variables with recursive functions
Example#128 - Declaring static variables
Example#129 - Static variables in anonymous functions
Example#130 - Usage of static Variables in Inherited Methods
Example#131 - Variable property example
Example#132 - A simple HTML form
Example#133 - Accessing data from a simple POST HTML form
Example#134 - More complex form variables
Example#135 - A setcookie example
Example#136 - Nomi di costanti validi ed errati
Example#137 - Definizione di costanti
Example#138 - Definizione di Costanti utilizzando la parola chiave const
Example#139 - Associatività
Example#140 - Ordine di valutazione indefinito
Example#141 - +, - e . hanno la stessa precedenza (prima di PHP 8.0.0)
Example#142 - Operazioni aritmetiche su variabili carattere
Example#143 - Assegnare per riferimento
Example#144 - Operazioni AND, OR e XOR su interi
Example#145 - Operazioni XOR su stringhe
Example#146 - Spostamento di bit su interi
Example#147 - Confronto Boolean/null
Example#148 - Trascrizione del confronto standard tra matrici
Example#149 - Assegnazione di un valore di default
Example#150 - Comportamento ternario non ovvio
Example#151 - Concatenamento ternario breve
Example#152 - Assegnazione di un valore predefinito
Example#153 - Operatore null coalescing nidificato
Example#154 - Dimostrazione degli operatori logici
Example#155 - Confrontare gli array
Example#156 - Utilizzo di instanceof con le classi
Example#157 - Utilizzo di instanceof con le classi ereditate
Example#158 - Utilizzo di instanceof per controllare se un oggetto non è un'instanceof di una classe
Example#159 - Utilizzo di instanceof con interfacce
Example#160 - Utilizzo di instanceof con altre variabili
Example#161 - Utilizzo di instanceof per controllare altre variabili
Example#162 - Utilizzo di instanceof per testare le costanti
Example#163 - Utilizzo di instanceof con un'espressione arbitraria
Example#164 - Uso di |>
Example#165 - Concatenare chiamate |>
Example#166 - Common foreach usages
Example#167 - Iterate a constant array's values by reference
Example#168 - switch structure
Example#169 - Structure of a match expression
Example#170 - Esempio di un'espressione di corrispondenza non gestita
Example#171 - Utilizzo di espressioni di corrispondenza generalizzate per ramificare su intervalli interi
Example#172 - Utilizzo di espressioni di corrispondenza generalizzate per ramificare sul contenuto della stringa
Example#173 - Tick usage example
Example#174 - Declaring an encoding for the script
Example#175 - Basic include example
Example#176 - Including within functions
Example#177 - include through HTTP
Example#178 - Comparing return value of include
Example#179 - include and the return statement
Example#180 - Using output buffering to include a PHP file into a string
Example#181 - esempio d'uso di goto
Example#182 - Esempio di loop con goto
Example#183 - Questo non funziona
Example#184 - Pseudo codice per dimostrare l'uso delle funzioni
Example#185 - Funzioni condizionali
Example#186 - Funzioni dentro a funzioni
Example#187 - Funzioni ricorsive
Example#188 - Passaggio di array a funzioni
Example#189 - Elenco degli Argomenti della Funzione con Virgola finale
Example#190 - Dichiarazione di argomenti facoltativi dopo argomenti obbligatori
Example#191 - Passaggio di parametri per riferimento
Example#192 - Utilizzo dei parametri default in una funzione
Example#193 - Utilizzo di tipi non scalari come valori di default
Example#194 - Utilizzo incorretto degli argomenti di default
Example#195 - Utilizzo corretto degli argomenti di default
Example#196 - Utilizzo di ... per accedere ai parametri variabili
Example#197 - Uso di ... per fornire parametri
Example#198 - Parametri variabili con tipo dichiarato
Example#199 - Accesso ai parametri variabili in vecchie versioni di PHP
Example#200 - Sintassi dell'argomento denominato
Example#201 - Argomenti posizionali contro argomenti nominali
Example#202 - Stesso esempio di sopra con un diverso ordine dei parametri
Example#203 - Combinazione di argomenti nominali con argomenti posizionali
Example#204 - Eccezione Error durante il passaggio multiplo dello stesso parametro
Example#205 - Uso di return
Example#206 - Restituzione di un array per ottenere più valori
Example#207 - Restituzione di un riferimento da una funzione
Example#208 - Esempio di funzioni variabili
Example#209 - Esempio di un metodo variabile
Example#210 - Esempio di metodo variabile con proprietà statiche
Example#211 - Callable complesse
Example#212 - Esempio di funzione anonima
Example#213 - Esempio di assegnazione di funzione anonima
Example#214 - Ereditare variabili dal contesto del genitore
Example#215 - Chiusure e ambiti di visibilità
Example#216 - Binding automatico di $this
Example#217 - Tentativo di utilizzo di $this all'interno di una funzione anonima statica
Example#218 - Tentativo di legare un oggetto ad una funzione anonima statica
Example#219 - Le arrow function catturano variabili per valore automaticamente
Example#220 - Le arrow function catturano variabili per valore automaticamente, anche quando nidificate
Example#221 - Esempi di arrow function
Example#222 - I valori dello scope esterno non possono essere modificati dalle arrow function
Example#223 - Sintassi della callable di prima classe semplice
Example#224 - Confronto dello scope tra CallableExpr(...) e callable tradizionale
Example#225 - Semplice definizione di una classe
Example#226 - Esempi della pseudo-variabile $this
Example#227 - Creazione di un'istanza
Example#228 - Creazione di un'istanza utilizzando un'espressione arbitraria
Example#229 - Assegnazione di oggetti
Example#230 - Creazione di nuovi oggetti
Example#231 - Accesso al membro dell'oggetto appena creato
Example#232 - Accesso alla proprietà vs. chiamata del metodo
Example#233 - Chiamare una funzione anonima memorizzata in una proprietà
Example#234 - Ereditarietà semplice
Example#235 - Metodi figli compatibili
Example#236 - Errore fatale quando un metodo figlio rimuove un parametro
Example#237 - Errore fatale quando un metodo figlio rende obbligatorio un parametro facoltativo
Example#238 - Errore durante l'utilizzo di argomenti e parametri con nome rinominati in una classe figlia
Example#239 - Risoluzione del nome della classe
Example#240 - Risoluzione del nome della classe mancante
Example#241 - Risoluzione del nome dell'oggetto
Example#242 - L'Operatore Nullsafe
Example#243 - Property declarations
Example#244 - Example of typed properties
Example#245 - Accessing properties
Example#246 - Example of readonly properties
Example#247 - Illegal initialization of readonly properties
Example#248 - Readonly properties and cloning
Example#249 - Property hooks (full version)
Example#250 - Property get expression
Example#251 - Property set defaults
Example#252 - Property set expression
Example#253 - Invalid virtual property
Example#254 - Virtual property
Example#255 - Calling a method from a hook
Example#256 - Final hooks
Example#257 - Hook inheritance
Example#258 - Parent hook access (set)
Example#259 - Parent hook access (get)
Example#260 - Definire ed usare una costante
Example#261 - Esempio di dati statici
Example#262 - Esempio di espressione delle costanti
Example#263 - Esempio di autocaricamento
Example#264 - Altro esempio di autocaricamento
Example#265 - Autocaricamento con gestione delle eccezioni per 5.3.0+
Example#266 - Autocaricamento con gestione delle eccezioni per 5.3.0+ - Classe dell'eccezione personalizzata mancante
Example#267 - Constructors in inheritance
Example#268 - Using constructor arguments
Example#269 - Using constructor property promotion
Example#270 - Using new in initializers
Example#271 - Using static creation methods
Example#272 - Destructor Example
Example#273 - Property declaration
Example#274 - Asymmetric Property visibility
Example#275 - Asymmetric Static Property Visibility
Example#276 - Asymmetric Property inheritance
Example#277 - Method Declaration
Example#278 - Constant Declaration as of PHP 7.1.0
Example#279 - Accessing private members of the same object type
Example#280 - Inheritance Example
Example#281 - The overriding method does not declare any return type
Example#282 - The overriding method declares a wrong return type
Example#283 - The overriding method declares a wrong return type without a deprecation notice
Example#284 - :: from outside the class definition
Example#285 - :: from inside the class definition
Example#286 - Calling a parent's method
Example#287 - Static method example
Example#288 - Static property example
Example#289 - Esempio di classe astratta
Example#290 - Abstract class example
Example#291 - Interface properties example
Example#292 - Interface example
Example#293 - Extendable Interfaces
Example#294 - Variance compatibility with multiple interfaces
Example#295 - Multiple interface inheritance
Example#296 - Interfaces with constants
Example#297 - Interfaces with abstract classes
Example#298 - Extending and implementing simultaneously
Example#299 - Trait example
Example#300 - Precedence Order Example
Example#301 - Alternate Precedence Order Example
Example#302 - Multiple Traits Usage
Example#303 - Conflict Resolution
Example#304 - Changing Method Visibility
Example#305 - Traits Composed from Traits
Example#306 - Express Requirements by Abstract Methods
Example#307 - Static Variables
Example#308 - Static Methods
Example#309 - Static Properties
Example#310 - Defining Properties
Example#311 - Conflict Resolution
Example#312 - Defining Constants
Example#313 - Conflict Resolution
Example#314 - Defining a method coming from a trait as final
Example#315 - Defining a readonly anonymous class
Example#316 - Overloading properties via the __get(), __set(), __isset() and __unset() methods
Example#317 - Overloading methods via the __call() and __callStatic() methods
Example#318 - Simple Object Iteration
Example#319 - Serialize and unserialize
Example#320 - Sleep and wakeup
Example#321 - Simple example
Example#322 - Using __invoke()
Example#323 - Using __invoke()
Example#324 - Using __set_state()
Example#325 - Using __debugInfo()
Example#326 - Final methods example
Example#327 - Final class example
Example#328 - Final property example as of PHP 8.4.0
Example#329 - Final constants example as of PHP 8.1.0
Example#330 - Clonazione di un oggetto
Example#331 - Example of object comparison
Example#332 - self:: usage
Example#333 - static:: simple usage
Example#334 - static:: usage in a non-static context
Example#335 - Forwarding and non-forwarding calls
Example#336 - References and Objects
Example#337 - Property type variance
Example#338 - Creating a Lazy Ghost
Example#339 - Creating a Lazy Proxy
Example#340 - Initializing Properties Eagerly
Example#341 - Namespace syntax example
Example#342 - Declaring a single namespace
Example#343 - Declaring a single namespace
Example#344 - Declaring a single namespace with hierarchy
Example#345 - Declaring multiple namespaces, simple combination syntax
Example#346 - Declaring multiple namespaces, bracketed syntax
Example#347 - Declaring multiple namespaces and unnamespaced code
Example#348 - Declaring multiple namespaces and unnamespaced code
Example#349 - Accessing global classes, functions and constants from within a namespace
Example#350 - Dynamically accessing elements
Example#351 - Dynamically accessing namespaced elements
Example#352 - __NAMESPACE__ example, namespaced code
Example#353 - __NAMESPACE__ example, global code
Example#354 - using __NAMESPACE__ for dynamic name construction
Example#355 - the namespace operator, inside a namespace
Example#356 - the namespace operator, in global code
Example#357 - importing/aliasing with the use operator
Example#358 - importing/aliasing with the use operator, multiple use statements combined
Example#359 - Importing and dynamic names
Example#360 - Importing and fully qualified names
Example#361 - Illegal importing rule
Example#362 - Using global space specification
Example#363 - Accessing global classes inside a namespace
Example#364 - global functions/constants fallback inside a namespace
Example#365 - Name resolutions illustrated
Example#366 - Accessing global classes outside a namespace
Example#367 - Accessing global classes outside a namespace
Example#368 - Accessing internal classes in namespaces
Example#369 - Accessing internal classes, functions or constants in namespaces
Example#370 - Fully Qualified names
Example#371 - Qualified names
Example#372 - Unqualified class names
Example#373 - Unqualified function or constant names
Example#374 - Dangers of using namespaced names inside a double-quoted string
Example#375 - Undefined constants
Example#376 - Undefined constants
Example#377 - Basic limited values
Example#378 - Advanced exclusive values
Example#379 - Converting error reporting to exceptions
Example#380 - Throwing an Exception
Example#381 - Exception handling with a finally block
Example#382 - Interaction between the finally block and return
Example#383 - Nested Exception
Example#384 - Multi catch exception handling
Example#385 - Omitting the caught variable
Example#386 - Throw as an expression
Example#387 - Exception in try and in finally
Example#388 - The Built in Exception class
Example#389 - Extending the Exception class
Example#390 - Basic usage
Example#391 - Implementing range as a generator
Example#392 - A simple example of yielding values
Example#393 - Yielding a key/value pair
Example#394 - Yielding nulls
Example#395 - Yielding values by reference
Example#396 - yield from with iterator_to_array
Example#397 - Basic use of yield from
Example#398 - yield from and return values
Example#399 - Implementing optional methods of an interface with Attributes
Example#400 - Attribute Syntax
Example#401 - Reading Attributes using Reflection API
Example#402 - Reading Specific Attributes using Reflection API
Example#403 - Simple Attribute Class
Example#404 - Using target specification to restrict where attributes can be used
Example#405 - Using IS_REPEATABLE to allow attribute on a declaration multiple times
Example#406 - Uso dei riferimenti con variabili non definite
Example#407 - Riferimenti di varibiali globali all'interno di una funzione
Example#408 - Riferimenti e istruzione foreach
Example#409 - $GLOBALS example
Example#410 - writing entire $GLOBALS will result in error.
Example#411 - $_SERVER example
Example#412 - $_GET example
Example#413 - $_POST example
Example#414 - $_ENV example
Example#415 - $_COOKIE example
Example#416 - $php_errormsg example
Example#417 - $http_response_header example
Example#418 - $argc esempio
Example#419 - $argv example
Example#420 - Esempio di Exception::getMessage
Example#421 - Exception::getPrevious example
Example#422 - Exception::getCode example
Example#423 - Exception::getFile example
Example#424 - Exception::getLine example
Example#425 - Exception::getTrace example
Example#426 - Exception::getTraceAsString example
Example#427 - Exception::__toString example
Example#428 - Use set_error_handler to change error messages into ErrorException
Example#429 - ErrorException::getSeverity example
Example#430 - Error::getMessage example
Example#431 - Error::getPrevious example
Example#432 - Error::getCode example
Example#433 - Error::getFile example
Example#434 - Error::getLine example
Example#435 - Error::getTrace example
Example#436 - Error::getTraceAsString example
Example#437 - Error::__toString example
Example#438 - Basic usage
Example#439 - Basic usage
Example#440 - Countable::count example
Example#441 - Basic usage
Example#442 - ArrayAccess::offsetExists example
Example#443 - Basic usage
Example#444 - Closure::bind example
Example#445 - Esempio di Closure::bindTo
Example#446 - Closure::call example
Example#447 - Created as a result of typecasting to object
Example#448 - Created as a result of json_decode
Example#449 - Declaring dynamic properties
Example#450 - Generator::getReturn example
Example#451 - Generator::key example
Example#452 - Generator::rewind example
Example#453 - Using Generator::send to inject values
Example#454 - Throwing an exception into a generator
Example#455 - Basic WeakReference Usage
Example#456 - WeakMap usage example
Example#457 - Basic Stringable Usage
Example#458 - Basic usage
Example#459 - Basic usage
Example#460 - Basic usage
Example#461 - Passing a SensitiveParameterValue object to var_dump
Example#462 - SensitiveParameterValue::getValue example
Example#463 - Created by unserialize
Example#464 - AllowDynamicProperties with non-existing property
Example#465 - AllowDynamicProperties with non-existing property in inherited class
Example#466 - Delaying validation of an invalid target
Example#467 - Validation occurs during reflection
Example#468 - Basic usage
Example#469 - Intentionally discarding the return value
Example#470 - Usage with methods
Example#471 - Usage with properties
Example#472 - Basic bindto usage example
Example#473 - Fetch a page and send POST data
Example#474 - Ignore redirects but fetch headers and content
Example#475 - Esempio di utilizzo base di password
Example#476 - Detecting which URL we ended up on after redirects
Example#477 - php://temp/maxmemory
Example#478 - php://filter/resource=<stream to be filtered>
Example#479 - php://filter/read=<filter list to apply to read chain>
Example#480 - php://filter/write=<filter list to apply to write chain>
Example#481 - php://memory and php://temp are not reusable
Example#482 - php://input to read JSON data from the request body
Example#483 - Print data:// contents
Example#484 - Fetch the media type
Example#485 - Basic usage
Example#486 - Opening a stream from an active connection
Example#487 - This $session variable must be kept available!
Example#488 - Traversing a RAR archive
Example#489 - Opening an encrypted file (header encryption)
Example#490 - Poor variable checking leads to....
Example#491 - ... A filesystem attack
Example#492 - More secure file name checking
Example#493 - More secure file name checking
Example#494 - Script vulnerable to null bytes
Example#495 - Correctly validating the input
Example#496 - Hashing password field
Example#497 - Splitting the result set into pages ... and making superusers (PostgreSQL)
Example#498 - Listing out articles ... and some passwords (any database server)
Example#499 - From resetting a password ... to gaining more privileges (any database server)
Example#500 - Attacking the database host operating system (MSSQL Server)
Example#501 - Avoiding SQL injection by using PDO prepared statements
Example#502 - Attacking Variables with a custom HTML page
Example#503 - Exploiting common debugging variables
Example#504 - Finding dangerous variables with E_ALL
Example#505 - Dangerous Variable Usage
Example#506 - Hiding PHP as another language
Example#507 - Using unknown types for PHP extensions
Example#508 - Using HTML types for PHP extensions
Example#509 - Esempio di Autenticazione HTTP "Basic"
Example#510 - Esempio di autenticazione HTTP "Digest"
Example#511 - Esempio di Autenticazione HTTP che impone l'inserimento di nuovo username/password
Example#512 - Form di caricamento file
Example#513 - Verifica dell'upload di file
Example#514 - Upload di una serie di file
Example#515 - Caricamento di più file
Example#516 - Registrare i file ricevuti con HTTP PUT
Example#517 - Leggere il titolo di una pagina web remota
Example#518 - Salvataggio di dati su server remoto
Example#519 - Il seguente esempio illustra la diferenza rispetto alla CGI SAPI:
Example#520 - Example of using -d to set an INI setting
Example#521 - Visualizzazione dei moduli PHP e di Zend integrati (e quindi caricati):
Example#522 - errore di sintassi con l'utilizzo dei doppi apici
Example#523 - Utilizzo degli apici singoli per impedire la sostituzione delle variabili nella shell
Example#524 - Utilizzo delle opzioni -B, -R e -E per contare il numero di linea di un progetto.
Example#525 - Utilizzo di -v per recuperare il nome SAPI e la versione di PHP e Zend
Example#526 - Esempio di uso di --ini
Example#527 - semplice utilizzo di --rf
Example#528 - Esempio di --rc
Example#529 - Esempio di --re
Example#530 - --ri example
Example#531 - Eseguire uno script PHP come shell script
Example#532 - Script sviluppato per essere eseguito da linea di comando (script.php)
Example#533 - File batch per eseguire uno script PHP da linea di comando (script.bat)
Example#534 - Esecuzione di codice con la shell interattiva
Example#535 - Tab completion
Example#536 - Impostare i valori del php.ini nella shell interattiva
Example#537 - Avvio del web server
Example#538 - Esecuzione con una cartella di radice dei documenti specifica
Example#539 - Uso di uno script router
Example#540 - Controllo dell'Uso del Server Web CLI
Example#541 - Gestione Tipi File Non Supportati
Example#542 - Accedere Al Web Server CLI Da Macchine Remote
Example#543 - Creating a new zval container
Example#544 - Displaying zval information
Example#545 - Increasing refcount of a zval
Example#546 - Decreasing zval refcount
Example#547 - Creating a array zval
Example#548 - Adding already existing element to an array
Example#549 - Removing an element from an array
Example#550 - Adding the array as an element of itself
Example#551 - Unsetting $a
Example#552 - Memory usage example
Example#553 - GC performance influences
Example#554 - Running the above script
Example#555 - Recompiling PHP to enable GC benchmarking
Example#556 - GC statistics
Example#557 - all_probes.d for tracing all PHP Static Probes with DTrace
Example#558 - all_probes.stp for tracing all PHP Static Probes with SystemTap
Example#559 - all_probes.bt for tracing all PHP Static Probes with bpftrace
Example#560 - A apcu_add example
Example#561 - A apcu_cache_info example
Example#562 - apcu_cas example
Example#563 - apcu_dec example
Example#564 - A apcu_delete example
Example#565 - An apcu_entry example
Example#566 - apcu_exists example
Example#567 - A apcu_fetch example
Example#568 - apcu_inc example
Example#569 - A apcu_key_info example
Example#570 - A apcu_sma_info example
Example#571 - A apcu_store example
Example#572 - A APCUIterator::__construct example
Example#573 - Esempio dell'utilizzo della gestione degli errori in uno script
Example#574 - Esempio di debug_backtrace
Example#575 - Esempio di funzione debug_print_backtrace
Example#576 - An error_clear_last example
Example#577 - An error_get_last example
Example#578 - iEsempi di uso di error_log
Example#579 - esempi error_reporting
Example#580 - get_error_handler example
Example#581 - get_exception_handler example
Example#582 - Gestione degli errori con set_error_handler e trigger_error
Example#583 - Esempio di set_exception_handler
Example#584 - Calling a function from shared library
Example#585 - Calling a function, returning a structure through an argument
Example#586 - Accessing existing C variables
Example#587 - Creating and Modifying C variables
Example#588 - Working with C arrays
Example#589 - Working with C enums
Example#590 - Assigning a PHP Closure to a C function pointer
Example#591 - A opcache_get_status example
Example#592 - opcache_jit_blacklist basic example
Example#593 - Complete class for operator overloading
Example#594 - Output Control example
Example#595 - Output rewrite example
Example#596 - ob_end_clean example
Example#597 - ob_end_flush example
Example#598 - A simple ob_get_clean example
Example#599 - A simple ob_get_contents example
Example#600 - ob_get_flush example
Example#601 - A simple ob_get_length example
Example#602 - Array returned when full_status is false
Example#603 - Array returned when full_status is true
Example#604 - ob_list_handlers example
Example#605 - User defined callback function example
Example#606 - Creating an unerasable output buffer
Example#607 - output_add_rewrite_var example
Example#608 - output_reset_rewrite_vars example
Example#609 - Gestione di un'asserzione fallita con un handler personalizzato
Example#610 - Uso di un gestore personalizzato per stampare una descrizione
Example#611 - Aspettative senza un'eccezione personalizzata
Example#612 - Aspettative con un'eccezione personalizzata
Example#613 - cli_get_process_title example
Example#614 - Esempi di dl
Example#615 - Esempio di uso di extension_loaded
Example#616 - A gc_enabled example
Example#617 - gc_status Usage
Example#618 - Esempio di uso di get_include_path
Example#619 - Esempio di uso di get_included_files del file (abc.php)
Example#620 - Unfiltered get_resources
Example#621 - Filtered get_resources
Example#622 - Esempio di getenv
Example#623 - Esempio di uso di getlastmod
Example#624 - Esempio di uso di getrusage
Example#625 - Qualche esempio di ini_get
Example#626 - Esempio di uso di ini_get_all
Example#627 - A few ini_parse_quantity examples
Example#628 - Esempio di uso di memory_get_usage
Example#629 - memory_reset_peak_usage example
Example#630 - php_ini_loaded_file example
Example#631 - Un semplice esempio di lista restuita dalla funzione
Example#632 - Esempio di uso di php_sapi_name
Example#633 - Alcuni esempi di php_uname
Example#634 - Alcune costanti relative al OS
Example#635 - Stampa la lista generale
Example#636 - Stampa l'elenco degli sviluppatori principali e del gruppo di documentazione
Example#637 - Stampa di tutte le menzioni
Example#638 - Esempio di uso di phpinfo
Example#639 - Esempio di uso di phpversion
Example#640 - Impostazione di una variabile d'ambiente
Example#641 - Esempio di uso di restore_include_path
Example#642 - Esempio di uso di set_include_path
Example#643 - sys_get_temp_dir example
Example#644 - Esempio di uso di version_compare
Example#645 - zend_thread_id example
Example#646 - Esempio di uso di zend_version
Example#647 - Custom Superglobals with runkit.superglobal=_FOO,_BAR in php.ini
Example#648 - A runkit7_function_add example
Example#649 - A runkit7_function_copy example
Example#650 - A runkit7_function_redefine example
Example#651 - runkit7_method_add example
Example#652 - runkit7_method_copy example
Example#653 - runkit7_method_redefine example
Example#654 - runkit7_method_remove example
Example#655 - runkit7_method_rename example
Example#656 - runkit7_zval_inspect example
Example#657 - Basic uopz_add_function Usage
Example#658 - uopz_allow_exit example
Example#659 - uopz_backup example
Example#660 - uopz_compose example
Example#661 - uopz_copy example
Example#662 - Basic uopz_del_function Usage
Example#663 - uopz_delete example
Example#664 - uopz_delete class example
Example#665 - uopz_extend example
Example#666 - uopz_flags example
Example#667 - "Unfinalize" a Class
Example#668 - uopz_function example
Example#669 - uopz_function class example
Example#670 - uopz_get_exit_status example
Example#671 - Basic uopz_get_hook Usage
Example#672 - uopz_get_mock example
Example#673 - Basic uopz_get_property Usage
Example#674 - uopz_get_return example
Example#675 - Basic uopz_get_static Usage
Example#676 - uopz_implement example
Example#677 - uopz_overload example
Example#678 - uopz_redefine example
Example#679 - uopz_rename example
Example#680 - uopz_rename class example
Example#681 - uopz_restore example
Example#682 - Basic uopz_set_hook Usage
Example#683 - uopz_set_mock example
Example#684 - uopz_set_mock example
Example#685 - uopz_set_mock and static members
Example#686 - Basic uopz_set_property Usage
Example#687 - uopz_set_return example
Example#688 - uopz_set_return example
Example#689 - uopz_set_return class example
Example#690 - Basic uopz_set_static Usage
Example#691 - uopz_undefine example
Example#692 - Basic uopz_unset_hook Usage
Example#693 - uopz_unset_mock example
Example#694 - uopz_unset_return example
Example#695 - wincache.ignorelist example
Example#696 - Authentication configuration for wincache.php
Example#697 - Enabling WinCache session handler
Example#698 - Enabling WinCache functions reroutes
Example#699 - Reroute.ini file content
Example#700 - A wincache_fcache_fileinfo example
Example#701 - A wincache_fcache_meminfo example
Example#702 - Using wincache_lock
Example#703 - A wincache_ocache_fileinfo example
Example#704 - A wincache_ocache_meminfo example
Example#705 - A wincache_refresh_if_changed example
Example#706 - A wincache_rplist_fileinfo example
Example#707 - A wincache_rplist_meminfo example
Example#708 - A wincache_scache_info example
Example#709 - A wincache_scache_meminfo example
Example#710 - wincache_ucache_add with key as a string
Example#711 - wincache_ucache_add with key as an array
Example#712 - Using wincache_ucache_cas
Example#713 - using wincache_ucache_clear
Example#714 - Using wincache_ucache_dec
Example#715 - Using wincache_ucache_delete with key as a string
Example#716 - Usingwincache_ucache_delete with key as an array
Example#717 - Using wincache_ucache_delete with key as an array where some elements cannot be deleted
Example#718 - Using wincache_ucache_exists
Example#719 - wincache_ucache_get with key as a string
Example#720 - wincache_ucache_get with key as an array
Example#721 - Using wincache_ucache_inc
Example#722 - Using wincache_ucache_info
Example#723 - A wincache_ucache_meminfo example
Example#724 - wincache_ucache_set with key as a string
Example#725 - wincache_ucache_set with key as an array
Example#726 - Using wincache_unlock
Example#727 - Xhprof example with the optional GUI
Example#728 - xhprof_disable example
Example#729 - xhprof_enable examples
Example#730 - xhprof_sample_disable example
Example#731 - Make sure the item is stored
Example#732 - Using CHAP passwords
Example#733 - radius_acct_open example
Example#734 - radius_add_server example
Example#735 - radius_auth_open example
Example#736 - radius_create_request example
Example#737 - radius_cvt_addr example
Example#738 - radius_cvt_int example
Example#739 - radius_cvt_string example
Example#740 - radius_get_attr example
Example#741 - radius_get_tagged_attr_data example
Example#742 - radius_get_tagged_attr_tag example
Example#743 - radius_get_vendor_attr example
Example#744 - radius_put_attr example
Example#745 - radius_put_int example
Example#746 - radius_put_string example
Example#747 - radius_put_vendor_attr example
Example#748 - readline Example
Example#749 - Readline Callback Interface Example
Example#750 - Small bzip2 Example
Example#751 - Compressing data
Example#752 - Decompressing a String
Example#753 - bzerror example
Example#754 - bzopen example
Example#755 - bzread example
Example#756 - bzwrite example
Example#757 - Using an external file
Example#758 - Using a file within a phar archive
Example#759 - Converting a phar archive from phar to tar file format
Example#760 - phar.cache_list usage example
Example#761 - A Phar::addEmptyDir example
Example#762 - A Phar::addFile example
Example#763 - A Phar::addFromString example
Example#764 - A Phar::apiVersion example
Example#765 - A Phar::buildFromDirectory example
Example#766 - A Phar::buildFromIterator with SplFileInfo
Example#767 - A Phar::buildFromIterator with other iterators
Example#768 - A Phar::canCompress example
Example#769 - A Phar::canWrite example
Example#770 - A Phar::compress example
Example#771 - A Phar::compressFiles example
Example#772 - A Phar::__construct example
Example#773 - A Phar::convertToData example
Example#774 - A Phar::convertToExecutable example
Example#775 - A Phar::copy example
Example#776 - A Phar::count example
Example#777 - A Phar::createDefaultStub example
Example#778 - A Phar::decompress example
Example#779 - A Phar::decompressFiles example
Example#780 - A Phar::delMetaData example
Example#781 - A Phar::delete example
Example#782 - A Phar::extractTo example
Example#783 - A Phar::getMetadata example
Example#784 - A Phar::getStub example
Example#785 - A Phar::hasMetadata example
Example#786 - A Phar::interceptFileFuncs example
Example#787 - A Phar::interceptFileFuncs example
Example#788 - A Phar::isBuffering example
Example#789 - A Phar::isCompressed example
Example#790 - A Phar::loadPhar example
Example#791 - A Phar::mapPhar example
Example#792 - A Phar::mount example
Example#793 - A Phar::mungServer example
Example#794 - A Phar::offsetExists example
Example#795 - Phar::offsetGet example
Example#796 - A Phar::offsetSet example
Example#797 - A Phar::offsetUnset example
Example#798 - A Phar::running example
Example#799 - A Phar::setAlias example
Example#800 - A Phar::setDefaultStub example
Example#801 - A Phar::setMetadata example
Example#802 - A Phar::setStub example
Example#803 - A Phar::startBuffering example
Example#804 - A Phar::stopBuffering example
Example#805 - A Phar::unlinkArchive example
Example#806 - A Phar::webPhar example
Example#807 - A PharData::addEmptyDir example
Example#808 - A PharData::addFile example
Example#809 - A PharData::addFromString example
Example#810 - A PharData::buildFromDirectory example
Example#811 - A PharData::buildFromIterator with SplFileInfo
Example#812 - A PharData::buildFromIterator with other iterators
Example#813 - A PharData::compress example
Example#814 - A PharData::compressFiles example
Example#815 - A PharData::__construct example
Example#816 - A PharData::convertToData example
Example#817 - A PharData::convertToExecutable example
Example#818 - A PharData::copy example
Example#819 - A PharData::decompress example
Example#820 - A PharData::decompressFiles example
Example#821 - A PharData::delMetaData example
Example#822 - A PharData::delete example
Example#823 - A PharData::extractTo example
Example#824 - A PharData::offsetSet example
Example#825 - A PharData::offsetUnset example
Example#826 - A Phar::setMetadata example
Example#827 - A PharFileInfo::chmod example
Example#828 - A PharFileInfo::compress example
Example#829 - A PharFileInfo::__construct example
Example#830 - A PharFileInfo::decompress example
Example#831 - A PharFileInfo::delMetaData example
Example#832 - A PharFileInfo::getCRC32 example
Example#833 - A PharFileInfo::getCompressedSize example
Example#834 - A PharFileInfo::getMetadata example
Example#835 - A PharFileInfo::getPharFlags example
Example#836 - A PharFileInfo::isCRCChecked example
Example#837 - A PharFileInfo::isCompressed example
Example#838 - A PharFileInfo::setMetadata example
Example#839 - Rar installation
Example#840 - On-the-fly decompression
Example#841 - RAR extension filesystem extraction example
Example#842 - Stile orientato agli oggetti
Example#843 - Stile procedurale
Example#844 - Stile orientato agli oggetti
Example#845 - Stile procedurale
Example#846 - Stile orientato agli oggetti
Example#847 - Stile procedurale
Example#848 - Stile orientato agli oggetti
Example#849 - Stile procedurale
Example#850 - Stile orientato agli oggetti
Example#851 - Stile procedurale
Example#852 - Stile orientato agli oggetti
Example#853 - Stile procedurale
Example#854 - Stile orientato agli oggetti
Example#855 - Stile procedurale
Example#856 - Volume Callback
Example#857 - Stile orientato agli oggetti
Example#858 - Stile procedurale
Example#859 - RarArchive::__toString example
Example#860 - RarEntry::extract example
Example#861 - How to extract all files in archive:
Example#862 - RarEntry::getAttr example
Example#863 - RarEntry::getHostOs example (version >= 2.0.0)
Example#864 - RarEntry::getHostOs example (version <= 1.0.0)
Example#865 - RarEntry::getMethod example
Example#866 - RarEntry::getName example
Example#867 - RarEntry::getPackedSize example
Example#868 - RarEntry::getStream example
Example#869 - RarEntry::getUnpackedSize example
Example#870 - RarEntry::getVersion example
Example#871 - RarException::isUsingExceptions example
Example#872 - RarException::setUsingExceptions example
Example#873 - Create a Zip archive
Example#874 - Dump the archive details and listing
Example#875 - Zip stream wrapper, read an OpenOffice meta info
Example#876 - Zip Usage Example
Example#877 - Create a new directory in an archive
Example#878 - Open and add
Example#879 - Add an entry to a new archive
Example#880 - Add file to a directory inside an archive
Example#881 - ZipArchive::addGlob example
Example#882 - ZipArchive::addPattern example
Example#883 - Delete file from archive using its index
Example#884 - Deleting a file and directory from an archive, using names
Example#885 - Extract all entries
Example#886 - Extract two entries
Example#887 - Dump an archive comment
Example#888 - Test if archive is a torrentzip format
Example#889 - Dump an entry comment
Example#890 - Dump an entry comment
Example#891 - Extract all entries with Unix rights
Example#892 - Get the file contents
Example#893 - Get the file contents
Example#894 - Convert an image from a zip entry
Example#895 - ZipArchive::getNameIndex example
Example#896 - Get the entry contents with fread and store it
Example#897 - Same as the previous example but with fopen and the zip stream wrapper
Example#898 - Stream wrapper and image, can be used with the xml function as well
Example#899 - Get the entry contents with fread and store it
Example#900 - Get the entry contents with fread and store it
Example#901 - Create an archive and then use it with ZipArchive::locateName
Example#902 - Open and extract
Example#903 - Create an archive
Example#904 - Create an temporary archive
Example#905 - Archive a file
Example#906 - Archive a file
Example#907 - Rename one entry
Example#908 - Rename one entry
Example#909 - Open and replace
Example#910 - Create an archive and set a comment
Example#911 - Create a torrentzip archive
Example#912 - Open an archive and set a comment for an entry
Example#913 - Open an archive and set a comment for an entry
Example#914 - Add files with different compression methods to an archive
Example#915 - Add files with different compression methods to an archive
Example#916 - Add file and set compression method
Example#917 - Archive and encrypt a file
Example#918 - Archive a file, with its Unix rights
Example#919 - Archive a file
Example#920 - Archive a file
Example#921 - Dump the stat info of an entry
Example#922 - Dump the stat info of an entry
Example#923 - Piccolo Esempio di Zlib
Example#924 - Utilizzo dell'API di compressione e decompressione incrementale a partire da PHP 7.0.0
Example#925 - Esempio di gzclose
Example#926 - Esempio di gzcompress
Example#927 - Esempio di gzdeflate
Example#928 - Creare un file gzip
Example#929 - gzeof example
Example#930 - gzfile example
Example#931 - gzgetc example
Example#932 - gzgets example
Example#933 - gzgetss example
Example#934 - gzinflate example
Example#935 - gzopen Example
Example#936 - gzpassthru example
Example#937 - gzread example
Example#938 - gzseek example
Example#939 - Esempio gzuncompress
Example#940 - gzwrite example
Example#941 - ob_gzhandler example
Example#942 - zlib_encode example
Example#943 - HashContext::__debugInfo example
Example#944 - A hash example
Example#945 - hash_algos example
Example#946 - hash_copy example
Example#947 - hash_equals example
Example#948 - Using hash_file
Example#949 - hash_hkdf example
Example#950 - hash_hmac example
Example#951 - hash_hmac_algos example
Example#952 - hash_hmac_file example
Example#953 - Incremental hashing example
Example#954 - hash_pbkdf2 example, basic usage
Example#955 - hash_update_stream example
Example#956 - mcrypt_create_iv Example
Example#957 - mcrypt_enc_get_algorithms_name example
Example#958 - mcrypt_enc_get_modes_name example
Example#959 - mcrypt_enc_get_supported_key_sizes example
Example#960 - mcrypt_encrypt Example
Example#961 - mcrypt_get_block_size example
Example#962 - mcrypt_get_cipher_name Example
Example#963 - mcrypt_get_iv_size Example
Example#964 - mcrypt_get_key_size Example
Example#965 - mcrypt_list_algorithms Example
Example#966 - mcrypt_list_modes Example
Example#967 - mcrypt_module_open Examples
Example#968 - Using mcrypt_module_open in encryption
Example#969 - mcrypt_module_self_test example
Example#970 - mdecrypt_generic Example
Example#971 - Computes the MD5 digest and hmac and print it out as hex
Example#972 - Traversing all hashes
Example#973 - mhash_get_block_size Example
Example#974 - mhash_get_hash_name Example
Example#975 - openssl_cipher_iv_length example
Example#976 - openssl_cipher_key_length example
Example#977 - openssl_cms_sign example
Example#978 - openssl_csr_export() example
Example#979 - openssl_csr_export_to_file() example
Example#980 - openssl_csr_get_public_key() example
Example#981 - openssl_csr_get_subject() example
Example#982 - Creating a self-signed certificate
Example#983 - Creating a self-signed ECC certificate (as of PHP 7.1.0)
Example#984 - openssl_csr_sign example - signing a CSR (how to implement your own CA)
Example#985 - Compute a shared secret
Example#986 - Generate a DH public/private keypair in php
Example#987 - AES Authenticated Encryption in GCM mode example for PHP 7.1+
Example#988 - AES Authenticated Encryption example prior to PHP 7.1
Example#989 - openssl_error_string example
Example#990 - openssl_get_cert_locations example
Example#991 - openssl_get_cipher_methods example
Example#992 - openssl_get_curve_names example
Example#993 - openssl_get_md_methods example
Example#994 - openssl_open example
Example#995 - openssl_password_hash example
Example#996 - openssl_password_hash with custom options
Example#997 - openssl_password_verify example
Example#998 - openssl_pbkdf2() example
Example#999 - openssl_pkcs12_read example
Example#1000 - openssl_pkcs7_decrypt example
Example#1001 - openssl_pkcs7_encrypt example
Example#1002 - Get a PEM array from a P7B file
Example#1003 - openssl_pkcs7_sign example
Example#1004 - openssl_pkey_derive example
Example#1005 - Obtain the public key from a private key
Example#1006 - Generating RSA key from parameters
Example#1007 - openssl_random_pseudo_bytes example
Example#1008 - openssl_seal example
Example#1009 - openssl_sign example
Example#1010 - openssl_sign example
Example#1011 - openssl_spki_export example
Example#1012 - openssl_spki_export example from <keygen>
Example#1013 - openssl_spki_export_challenge example
Example#1014 - openssl_spki_export_challenge example from <keygen>
Example#1015 - openssl_spki_new example
Example#1016 - openssl_spki_verify example
Example#1017 - openssl_spki_verify example from <keygen>
Example#1018 - openssl_verify example
Example#1019 - openssl_verify example
Example#1020 - openssl_x509_verify example
Example#1021 - Basic password_algos usage
Example#1022 - password_hash example
Example#1023 - password_hash example setting cost manually
Example#1024 - password_hash example finding a good cost
Example#1025 - password_hash example using Argon2i
Example#1026 - Usage of password_needs_rehash
Example#1027 - password_verify example
Example#1028 - RNP clearsign example
Example#1029 - simple callback function example
Example#1030 - sodium_crypto_box_seal example
Example#1031 - sodium_crypto_box_seal_open example
Example#1032 - sodium_crypto_core_ristretto255_add example
Example#1033 - sodium_crypto_core_ristretto255_from_hash example
Example#1034 - sodium_crypto_core_ristretto255_is_valid_point example
Example#1035 - sodium_crypto_core_ristretto255_random example
Example#1036 - sodium_crypto_core_ristretto255_scalar_add example
Example#1037 - sodium_crypto_core_ristretto255_scalar_invert example
Example#1038 - sodium_crypto_core_ristretto255_scalar_negate example
Example#1039 - sodium_crypto_core_ristretto255_scalar_random example
Example#1040 - sodium_crypto_core_ristretto255_scalar_sub example
Example#1041 - sodium_crypto_core_ristretto255_sub example
Example#1042 - sodium_crypto_generichash_final example
Example#1043 - sodium_crypto_generichash_init example
Example#1044 - sodium_crypto_generichash_update example
Example#1045 - sodium_crypto_kx_keypair usage
Example#1046 - sodium_crypto_pwhash example
Example#1047 - sodium_crypto_pwhash_str example
Example#1048 - sodium_crypto_secretbox example
Example#1049 - sodium_crypto_secretbox_keygen example
Example#1050 - Comparing sodium_crypto_secretbox_keygen with random_bytes
Example#1051 - sodium_crypto_secretbox_open example
Example#1052 - sodium_crypto_secretstream_xchacha20poly1305_init_pull example
Example#1053 - sodium_crypto_secretstream_xchacha20poly1305_init_push example
Example#1054 - sodium_crypto_stream_xchacha20_xor_ic example
Example#1055 - A crypt_checksalt example
Example#1056 - A crypt_gensalt example
Example#1057 - A crypt_preferred_method example
Example#1058 - DBA example
Example#1059 - Traversing a database
Example#1060 - dba_handlers Example
Example#1061 - odbc_connection_string_quote example
Example#1062 - Esempi di odbc_execute e odbc_prepare
Example#1063 - odbc_fetch_into Esempi pre 4.0.6
Example#1064 - odbc_fetch_into Esempi con PHP 4.0.6
Example#1065 - Esempio di odbc_fetch_intocon PHP 4.2.0
Example#1066 - Esempio di odbc_execute e odbc_prepare
Example#1067 - Esempi di odbc_setoption
Example#1068 - using PDO::ATTR_DRIVER_NAME
Example#1069 - Connecting to MySQL
Example#1070 - Handling connection errors
Example#1071 - Closing a connection
Example#1072 - Persistent connections
Example#1073 - Implicit Commit Example
Example#1074 - Executing a batch in a transaction
Example#1075 - Repeated inserts using prepared statements
Example#1076 - Repeated inserts using prepared statements
Example#1077 - Fetching data using prepared statements
Example#1078 - Calling a stored procedure with an output parameter
Example#1079 - Calling a stored procedure with an input/output parameter
Example#1080 - Invalid use of placeholder
Example#1081 - Create a PDO instance and set the error mode
Example#1082 - Create a PDO instance and set the error mode from the constructor
Example#1083 - Displaying an image from a database
Example#1084 - Inserting an image into a database
Example#1085 - Inserting an image into a database: Oracle
Example#1086 - Roll back a transaction
Example#1087 - Committing a basic transaction
Example#1088 - Committing a DDL transaction
Example#1089 - Create a PDO instance via driver invocation
Example#1090 - Create a PDO instance via URI invocation
Example#1091 - Create a PDO instance using an alias
Example#1092 - Retrieving an SQLSTATE code
Example#1093 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
Example#1094 - Issuing a DELETE statement
Example#1095 - Retrieving database connection attributes
Example#1096 - A PDO::getAvailableDrivers example
Example#1097 - SQL statement template with named parameters
Example#1098 - SQL statement template with question mark parameters
Example#1099 - SQL statement template with question mark escaped
Example#1100 - SQL with no placeholders can be executed using PDO::query
Example#1101 - Quoting a normal string
Example#1102 - Quoting a dangerous string
Example#1103 - Quoting a complex string
Example#1104 - Roll back a transaction
Example#1105 - Binding result set output to PHP variables
Example#1106 - Execute a prepared statement with named placeholders
Example#1107 - Execute a prepared statement with question mark placeholders
Example#1108 - Call a stored procedure with an INOUT parameter
Example#1109 - Execute a prepared statement with named placeholders
Example#1110 - Execute a prepared statement with question mark placeholders
Example#1111 - A PDOStatement::closeCursor example
Example#1112 - Counting columns
Example#1113 - PDOStatement::debugDumpParams example with named parameters
Example#1114 - PDOStatement::debugDumpParams example with unnamed parameters
Example#1115 - Retrieving an SQLSTATE code
Example#1116 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
Example#1117 - Execute a prepared statement with a bound variable and value
Example#1118 - Execute a prepared statement with an array of named values
Example#1119 - Execute a prepared statement with an array of positional values
Example#1120 - Execute a prepared statement with variables bound to positional placeholders
Example#1121 - Execute a prepared statement using array for IN clause
Example#1122 - Fetching rows using different fetch styles
Example#1123 - Fetching rows with a scrollable cursor
Example#1124 - Construction order
Example#1125 - Fetch all remaining rows in a result set
Example#1126 - Fetching all values of a single column from a result set
Example#1127 - Grouping all values by a single column
Example#1128 - Instantiating a class for each result
Example#1129 - Calling a function for each result
Example#1130 - Return first column of the next row
Example#1131 - Retrieving column metadata
Example#1132 - Fetching multiple rowsets returned from a stored procedure
Example#1133 - Return the number of deleted rows
Example#1134 - Counting rows returned by a SELECT statement
Example#1135 - Setting the fetch mode
Example#1136 - Insert LOBs in CUBRID PDO
Example#1137 - Fetch LOBs in CUBRID PDO
Example#1138 - Insert set in CUBRID PDO with default data type.
Example#1139 - Specify data type when insert set in CUBRID PDO
Example#1140 - PDO_CUBRID DSN examples
Example#1141 - A PDO::cubrid_schema example
Example#1142 - PDO_DBLIB DSN examples
Example#1143 - PDO_FIREBIRD DSN example with path
Example#1144 - PDO_FIREBIRD DSN example with port and path
Example#1145 - PDO_FIREBIRD DSN example with localhost and path to employee.fdb on Debian system
Example#1146 - PDO_FIREBIRD DSN to connect to a dialect 1 database
Example#1147 - PDO_IBM DSN example using db2cli.ini
Example#1148 - PDO_IBM DSN example using a connection string
Example#1149 - PDO_INFORMIX DSN example using odbc.ini
Example#1150 - PDO_INFORMIX DSN example using a connection string
Example#1151 - PDO_MYSQL DSN examples
Example#1152 - Setting MySQL unbuffered mode
Example#1153 - Pdo\Mysql::getWarningCount example
Example#1154 - PDO_SQLSRV DSN examples
Example#1155 - PDO_OCI DSN examples
Example#1156 - PDO_ODBC DSN example (ODBC driver manager)
Example#1157 - PDO_ODBC DSN example (IBM DB2 uncataloged connection)
Example#1158 - PDO_ODBC DSN example (Microsoft Access uncataloged connection)
Example#1159 - PDO_PGSQL DSN examples
Example#1160 - Pdo\Pgsql::copyFromArray example
Example#1161 - Pdo\Pgsql::copyFromFile example
Example#1162 - Pdo\Pgsql::copyToArray example
Example#1163 - Pdo\Pgsql::copyToFile example
Example#1164 - Pdo\Pgsql::escapeIdentifier example
Example#1165 - Pdo\Pgsql::getNotify example
Example#1166 - Pdo\Pgsql::getPid example
Example#1167 - Pdo\Pgsql::lobCreate example
Example#1168 - Pdo\Pgsql::lobOpen example
Example#1169 - Pdo\Pgsql::lobUnlink example
Example#1170 - Pdo\Pgsql::setNoticeCallback example
Example#1171 - PDO_SQLITE DSN examples
Example#1172 - Pdo\Sqlite::createAggregate example
Example#1173 - Pdo\Sqlite::createCollation example
Example#1174 - Pdo\Sqlite::createFunction example
Example#1175 - Pdo\Sqlite::loadExtension example
Example#1176 - Pdo\Sqlite::openBlob example
Example#1177 - Example of Data Retrieval
Example#1178 - Example of Data Insertion
Example#1179 - cubrid_bind example
Example#1180 - cubrid_bind BLOB/CLOB example
Example#1181 - cubrid_bind BLOB/CLOB example
Example#1182 - cubrid_close_prepare example
Example#1183 - cubrid_close_request example
Example#1184 - cubrid_col_get example
Example#1185 - cubrid_col_size example
Example#1186 - cubrid_column_names example
Example#1187 - cubrid_column_types example
Example#1188 - cubrid_commit example
Example#1189 - cubrid_connect example
Example#1190 - cubrid_connect_with_url url without properties example
Example#1191 - cubrid_connect_with_url url with properties example
Example#1192 - cubrid_current_oid example
Example#1193 - cubrid_disconnect example
Example#1194 - cubrid_drop example
Example#1195 - cubrid_error_code example
Example#1196 - cubrid_error_code_facility example
Example#1197 - cubrid_error_msg example
Example#1198 - cubrid_execute example
Example#1199 - cubrid_fetch example
Example#1200 - cubrid_free_result example
Example#1201 - cubrid_get example
Example#1202 - cubrid_get_charset example
Example#1203 - cubrid_get_class_name example
Example#1204 - cubrid_get_client_info example
Example#1205 - cubrid_get_db_parameter example
Example#1206 - cubrid_get_query_timeout example
Example#1207 - cubrid_get_server_info example
Example#1208 - cubrid_insert_id example
Example#1209 - cubrid_is_instance example
Example#1210 - cubrid_lob_close example
Example#1211 - cubrid_lob_export example
Example#1212 - cubrid_lob_get example
Example#1213 - cubrid_lob_send example
Example#1214 - cubrid_lob_size example
Example#1215 - cubrid_lob2_bind example
Example#1216 - cubrid_lob2_export example
Example#1217 - cubrid_lob2_export example
Example#1218 - cubrid_lob2_read example 1
Example#1219 - cubrid_lob2_read example 2
Example#1220 - cubrid_lob2_seek example
Example#1221 - cubrid_lob2_seek64 example
Example#1222 - cubrid_lob2_write example 1
Example#1223 - cubrid_lob2_write example 2
Example#1224 - cubrid_lock_read example
Example#1225 - cubrid_lock_write example
Example#1226 - cubrid_move_cursor example
Example#1227 - cubrid_next_result example
Example#1228 - cubrid_num_cols example
Example#1229 - cubrid_num_rows example
Example#1230 - cubrid_pconnect example
Example#1231 - cubrid_pconnect_with_url url without properties example
Example#1232 - cubrid_pconnect_with_url url with properties example
Example#1233 - cubrid_prepare example
Example#1234 - cubrid_put example
Example#1235 - cubrid_rollback example
Example#1236 - cubrid_schema example
Example#1237 - cubrid_seq_drop example
Example#1238 - cubrid_seq_insert example
Example#1239 - cubrid_seq_put example
Example#1240 - cubrid_set_add example
Example#1241 - cubrid_get_db_parameter example
Example#1242 - cubrid_set_drop example
Example#1243 - cubrid_version example
Example#1244 - cubrid_affected_rows example
Example#1245 - cubrid_client_encoding example
Example#1246 - cubrid_close example
Example#1247 - cubrid_data_seek example
Example#1248 - cubrid_db_name example
Example#1249 - cubrid_errno example
Example#1250 - cubrid_error example
Example#1251 - cubrid_fetch_array example
Example#1252 - cubrid_fetch_assoc example
Example#1253 - cubrid_fetch_field example
Example#1254 - cubrid_fetch_lengths example
Example#1255 - cubrid_fetch_object example
Example#1256 - cubrid_fetch_row example
Example#1257 - cubrid_field_flags example
Example#1258 - cubrid_field_len example
Example#1259 - cubrid_field_name example
Example#1260 - cubrid_field_seek example
Example#1261 - cubrid_field_table example
Example#1262 - cubrid_field_type example
Example#1263 - cubrid_list_dbs example
Example#1264 - cubrid_num_fields example
Example#1265 - cubrid_ping example
Example#1266 - Invalid Query
Example#1267 - Valid Query
Example#1268 - cubrid_real_escape_string example
Example#1269 - cubrid_result example
Example#1270 - cubrid_unbuffered_query example
Example#1271 - cubrid_load_from_glo example
Example#1272 - cubrid_new_glo example
Example#1273 - cubrid_save_to_glo example
Example#1274 - cubrid_send_glo example
Example#1275 - Creare un file di database dBase
Example#1276 - Mostra le informazioni dell'header di un file di database in formato dBase
Example#1277 - Usare dbase_numfields
Example#1278 - Apertura di un file di database dBase
Example#1279 - ibase_backup example
Example#1280 - ibase_backup example with arguments
Example#1281 - ibase_blob_get example
Example#1282 - ibase_blob_import example
Example#1283 - ibase_connect example
Example#1284 - ibase_execute example
Example#1285 - ibase_fetch_object example
Example#1286 - ibase_field_info example
Example#1287 - ibase_name_result example
Example#1288 - ibase_num_fields example
Example#1289 - ibase_query example
Example#1290 - ibase_restore example
Example#1291 - ibase_restore example with arguments
Example#1292 - ibase_service_attach example
Example#1293 - ibase_service_attach example
Example#1294 - ibase_service_attach example using hostname/port syntax
Example#1295 - ibase_service_detach example
Example#1296 - ibase_set_event_handler example
Example#1297 - Retrieving the AUTOCOMMIT value for a connection
Example#1298 - Setting the AUTOCOMMIT value for a connection
Example#1299 - Binding PHP variables to a prepared statement
Example#1300 - Calling stored procedures with IN and OUT parameters
Example#1301 - Inserting a binary large object (BLOB) directly from a file
Example#1302 - A db2_client_info example
Example#1303 - Closing a connection
Example#1304 - Retrieving an SQLSTATE value for a failed connection attempt
Example#1305 - Retrieving the error message returned by a failed connection attempt
Example#1306 - Creating a cataloged connection
Example#1307 - Creating an uncataloged connection
Example#1308 - Creating a connection with autocommit off by default
Example#1309 - i5/OS best performance
Example#1310 - Using trusted context
Example#1311 - A db2_escape_string example
Example#1312 - Creating a table with db2_exec
Example#1313 - Executing a SELECT statement with a scrollable cursor
Example#1314 - Returning XML data as an SQL ResultSet
Example#1315 - Performing a "JOIN" with XML data
Example#1316 - Returning SQL data as part of a larger XML document
Example#1317 - Preparing and executing an SQL statement with parameter markers
Example#1318 - Calling a stored procedure with an OUT parameter
Example#1319 - Returning XML data as an SQL ResultSet
Example#1320 - Performing a "JOIN" with XML data
Example#1321 - Returning SQL data as part of a larger XML document
Example#1322 - Iterating through a forward-only cursor
Example#1323 - Retrieving specific rows with db2_fetch_array from a scrollable cursor
Example#1324 - Iterating through a forward-only cursor
Example#1325 - Retrieving specific rows with db2_fetch_assoc from a scrollable cursor
Example#1326 - Iterating through a forward-only cursor
Example#1327 - Retrieving specific rows with db2_fetch_both from a scrollable cursor
Example#1328 - A db2_fetch_object example
Example#1329 - Iterating through a result set
Example#1330 - i5/OS recommended alternatives to db2_fetch_row/db2_result
Example#1331 - Setting and retrieving parameters through a connection resource
Example#1332 - A db2_last_insert_id example
Example#1333 - Iterating through different types of data
Example#1334 - Calling a stored procedure that returns multiple result sets
Example#1335 - Retrieving the number of fields in a result set
Example#1336 - Closing a persistent connection
Example#1337 - A db2_pconnect example
Example#1338 - Using trusted context
Example#1339 - Preparing and executing an SQL statement with parameter markers
Example#1340 - A db2_result example
Example#1341 - Rolling back a DELETE statement
Example#1342 - A db2_server_info example
Example#1343 - Setting one parameter with a connection resource
Example#1344 - Setting multiple parameters with a connection resource
Example#1345 - Setting multiple parameters with an invalid key
Example#1346 - Setting multiple parameters with an invalid value
Example#1347 - Setting multiple parameters with a connection resource and the wrong type
Example#1348 - Setting multiple parameters with the wrong resource
Example#1349 - Putting it all together
Example#1350 - i5/OS cursors are read-only
Example#1351 - MongoDB\Driver\Manager::__construct basic example
Example#1352 - MongoDB\Driver\Manager::__construct basic examples
Example#1353 - MongoDB\Driver\Manager::executeBulkWrite example
Example#1354 - Mixed write operations
Example#1355 - Ordered write operations causing an error
Example#1356 - MongoDB\Driver\Manager::executeCommand with a command returning a single result document
Example#1357 - MongoDB\Driver\Manager::executeCommand with a command returning a cursor
Example#1358 - Limiting execution time for a command
Example#1359 - MongoDB\Driver\Manager::executeQuery example
Example#1360 - Limiting execution time for a query
Example#1361 - MongoDB\Driver\Manager::getReadConcern example
Example#1362 - MongoDB\Driver\Manager::getReadPreference example
Example#1363 - MongoDB\Driver\Manager::getServers example
Example#1364 - MongoDB\Driver\Manager::getWriteConcern example
Example#1365 - Composing MongoDB\Driver\Command to provide a helper to create collections
Example#1366 - MongoDB\Driver\Command::__construct example
Example#1367 - MongoDB\Driver\Command::__construct example
Example#1368 - MongoDB\Driver\Query::__construct example
Example#1369 - Mixed write operations are grouped by type
Example#1370 - Ordered write operations causing an error
Example#1371 - MongoDB\Driver\BulkWrite::__construct example
Example#1372 - MongoDB\Driver\BulkWrite::count example
Example#1373 - MongoDB\Driver\BulkWrite::delete example
Example#1374 - MongoDB\Driver\BulkWrite::insert example
Example#1375 - MongoDB\Driver\BulkWrite::update example
Example#1376 - Mixed write operations
Example#1377 - Ordered write operations causing an error
Example#1378 - MongoDB\Driver\BulkWriteCommand::__construct example
Example#1379 - MongoDB\Driver\BulkWriteCommand::count example
Example#1380 - MongoDB\Driver\BulkWriteCommand::deleteMany example
Example#1381 - MongoDB\Driver\BulkWriteCommand::deleteOne example
Example#1382 - MongoDB\Driver\BulkWriteCommand::insertOne example
Example#1383 - MongoDB\Driver\BulkWriteCommand::replaceOne example
Example#1384 - MongoDB\Driver\BulkWriteCommand::updateMany example
Example#1385 - MongoDB\Driver\BulkWriteCommand::updateOne example
Example#1386 - Declare an API version on a manager
Example#1387 - Declare a strict API version on a manager
Example#1388 - MongoDB\Driver\WriteConcern::bsonSerialize with majority write concern
Example#1389 - MongoDB\Driver\WriteConcern::bsonSerialize with wtimeout and journal
Example#1390 - MongoDB\Driver\WriteConcern::__construct example
Example#1391 - MongoDB\Driver\WriteConcern::getJournal example
Example#1392 - MongoDB\Driver\WriteConcern::getW example
Example#1393 - MongoDB\Driver\WriteConcern::getWtimeout example
Example#1394 - MongoDB\Driver\WriteConcern::isDefault example
Example#1395 - MongoDB\Driver\ReadPreference::bsonSerialize with primary read preference
Example#1396 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and tag sets
Example#1397 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and max staleness
Example#1398 - MongoDB\Driver\ReadPreference::__construct example
Example#1399 - MongoDB\Driver\ReadPreference::getMaxStalenessSeconds example
Example#1400 - MongoDB\Driver\ReadPreference::getMode example
Example#1401 - MongoDB\Driver\ReadPreference::getModeString example
Example#1402 - MongoDB\Driver\ReadPreference::getTagSets example
Example#1403 - MongoDB\Driver\ReadConcern::bsonSerialize with empty read concern
Example#1404 - MongoDB\Driver\ReadConcern::bsonSerialize with local read concern
Example#1405 - MongoDB\Driver\ReadConcern::__construct example
Example#1406 - MongoDB\Driver\ReadConcern::getLevel example
Example#1407 - MongoDB\Driver\ReadConcern::isDefault example
Example#1408 - Reading a result set
Example#1409 - Reading a result set for a tailable cursor
Example#1410 - MongoDB\Driver\Cursor::getId example
Example#1411 - MongoDB\Driver\Cursor::getServer example
Example#1412 - MongoDB\Driver\Cursor::isDead example
Example#1413 - MongoDB\Driver\Cursor::setTypeMap example
Example#1414 - MongoDB\Driver\Cursor::toArray example
Example#1415 - MongoDB\Driver\CursorId::__toString example
Example#1416 - MongoDB\Driver\Server::getHost example
Example#1417 - MongoDB\Driver\Server::getInfo example
Example#1418 - MongoDB\Driver\Server::getLatency example
Example#1419 - MongoDB\Driver\Server::getPort example
Example#1420 - MongoDB\Driver\WriteConcernError::getCode example
Example#1421 - MongoDB\Driver\WriteConcernError::getInfo example
Example#1422 - MongoDB\Driver\WriteConcernError::getMessage example
Example#1423 - MongoDB\Driver\WriteError::getCode example
Example#1424 - MongoDB\Driver\WriteError::getIndex example
Example#1425 - MongoDB\Driver\WriteError::getMessage example
Example#1426 - MongoDB\Driver\WriteResult::getDeletedCount example
Example#1427 - MongoDB\Driver\WriteResult::getInsertedCount example
Example#1428 - MongoDB\Driver\WriteResult::getMatchedCount example
Example#1429 - MongoDB\Driver\WriteResult::getModifiedCount example
Example#1430 - MongoDB\Driver\WriteResult::getServer example
Example#1431 - MongoDB\Driver\WriteResult::getUpsertedCount example
Example#1432 - MongoDB\Driver\WriteResult::getUpsertedIds example
Example#1433 - MongoDB\Driver\WriteResult::getWriteConcernError example
Example#1434 - MongoDB\Driver\WriteResult::getWriteErrors with a single error
Example#1435 - MongoDB\Driver\WriteResult::getWriteErrors with multiple errors
Example#1436 - MongoDB\Driver\WriteResult::isAcknowledged with acknowledged write concern
Example#1437 - MongoDB\Driver\WriteResult::isAcknowledged with unacknowledged write concern
Example#1438 - MongoDB\Driver\BulkWriteCommandResult::getDeletedCount example
Example#1439 - MongoDB\Driver\BulkWriteCommandResult::getDeleteResults example
Example#1440 - MongoDB\Driver\BulkWriteCommandResult::getInsertedCount example
Example#1441 - MongoDB\Driver\BulkWriteCommandResult::getInsertResults example
Example#1442 - MongoDB\Driver\BulkWriteCommandResult::getMatchedCount example
Example#1443 - MongoDB\Driver\BulkWriteCommandResult::getModifiedCount example
Example#1444 - MongoDB\Driver\BulkWriteCommandResult::getUpdateResults example
Example#1445 - MongoDB\Driver\BulkWriteCommandResult::getUpsertedCount example
Example#1446 - MongoDB\Driver\BulkWriteCommandResult::isAcknowledged with acknowledged write concern
Example#1447 - MongoDB\Driver\BulkWriteCommandResult::isAcknowledged with unacknowledged write concern
Example#1448 - MongoDB\BSON\fromJSON example
Example#1449 - MongoDB\BSON\fromPHP example
Example#1450 - MongoDB\BSON\toCanonicalExtendedJSON example
Example#1451 - MongoDB\BSON\toJSON example
Example#1452 - MongoDB\BSON\toPHP example
Example#1453 - MongoDB\BSON\toRelaxedExtendedJSON example
Example#1454 - MongoDB\BSON\Document::toCanonicalExtendedJSON example
Example#1455 - MongoDB\BSON\Document::toRelaxedExtendedJSON example
Example#1456 - MongoDB\BSON\PackedArray::fromJSON example
Example#1457 - MongoDB\BSON\PackedArray::toCanonicalExtendedJSON example
Example#1458 - MongoDB\BSON\PackedArray::toRelaxedExtendedJSON example
Example#1459 - MongoDB\BSON\Binary::__construct example
Example#1460 - MongoDB\BSON\Binary::getData example
Example#1461 - MongoDB\BSON\Binary::getType example
Example#1462 - MongoDB\BSON\Binary::__toString example
Example#1463 - MongoDB\BSON\Decimal128::__construct example
Example#1464 - MongoDB\BSON\Decimal128::__toString example
Example#1465 - MongoDB\BSON\Javascript::__construct example
Example#1466 - MongoDB\BSON\Javascript::getCode example
Example#1467 - MongoDB\BSON\Javascript::getScope example
Example#1468 - MongoDB\BSON\Javascript::__toString example
Example#1469 - MongoDB\BSON\MaxKey::__construct example
Example#1470 - MongoDB\BSON\MinKey::__construct example
Example#1471 - MongoDB\BSON\ObjectId::__construct example
Example#1472 - MongoDB\BSON\ObjectId::getTimestamp example
Example#1473 - MongoDB\BSON\ObjectId::__toString example
Example#1474 - MongoDB\BSON\Regex::__construct example
Example#1475 - MongoDB\BSON\Regex::getFlags example
Example#1476 - MongoDB\BSON\Regex::getPattern example
Example#1477 - MongoDB\BSON\Regex::__toString example
Example#1478 - MongoDB\BSON\Timestamp::__construct example
Example#1479 - MongoDB\BSON\Timestamp::__toString example
Example#1480 - MongoDB\BSON\UTCDateTime::__construct example
Example#1481 - MongoDB\BSON\UTCDatetime::toDateTime example
Example#1482 - MongoDB\BSON\UTCDatetime::toDateTimeImmutable example
Example#1483 - MongoDB\BSON\UTCDateTime::__toString example
Example#1484 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for root document
Example#1485 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for root document
Example#1486 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for document field
Example#1487 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for document field
Example#1488 - MongoDB\BSON\Unserializable::bsonUnserialize example
Example#1489 - MongoDB\BSON\Int64::__toString example
Example#1490 - MongoDB\Driver\Exception\BulkWriteException::getWriteResult example
Example#1491 - MongoDB\Driver\Exception\BulkWriteCommandException::getErrorReply example
Example#1492 - Partial result if at least one write is successful
Example#1493 - No partial result if no writes are successful
Example#1494 - MongoDB\Driver\Exception\BulkWriteCommandException::getWriteConcernErrors example
Example#1495 - MongoDB\Driver\Exception\BulkWriteCommandException::getWriteErrors example
Example#1496 - MongoDB\Driver\Exception\WriteException::getWriteResult example
Example#1497 - Comparing the MySQL APIs
Example#1498 - Comparing prepared statements
Example#1499 - Configure commands for using mysqlnd or libmysqlclient
Example#1500 - Unbuffered query example: mysqli
Example#1501 - Unbuffered query example: pdo_mysql
Example#1502 - Problems with setting the character set with SQL
Example#1503 - Setting the character set example: mysqli
Example#1504 - Setting the character set example: pdo_mysql
Example#1505 - Easy migration from the old mysql extension
Example#1506 - Object-oriented and procedural interface
Example#1507 - Bad coding style
Example#1508 - Special meaning of localhost
Example#1509 - Setting defaults
Example#1510 - Executing queries
Example#1511 - Navigation through buffered results
Example#1512 - Navigation through unbuffered results
Example#1513 - Text protocol returns strings by default
Example#1514 - Native data types with mysqlnd and connection option
Example#1515 - Prepared statement
Example#1516 - INSERT prepared once, executed multiple times
Example#1517 - Less round trips using multi-INSERT SQL
Example#1518 - Native datatypes
Example#1519 - Output variable binding
Example#1520 - Using mysqli_result to fetch results
Example#1521 - Buffered result set for flexible read out
Example#1522 - Calling a stored procedure
Example#1523 - Using session variables
Example#1524 - Fetching results from stored procedures
Example#1525 - Stored Procedures and Prepared Statements
Example#1526 - Stored Procedures and Prepared Statements using bind API
Example#1527 - Multiple Statements
Example#1528 - SQL Injection
Example#1529 - Setting autocommit mode with SQL and through the API
Example#1530 - Commit and rollback
Example#1531 - Accessing result set meta data
Example#1532 - Prepared statements metadata
Example#1533 - $mysqli->affected_rows example
Example#1534 - mysqli::autocommit example
Example#1535 - mysqli::begin_transaction example
Example#1536 - Resetting the connection session
Example#1537 - If database is null the connection is opened without selecting any default database
Example#1538 - mysqli::character_set_name example
Example#1539 - mysqli::close example
Example#1540 - $mysqli->connect_errno example
Example#1541 - $mysqli->connect_error example
Example#1542 - mysqli::__construct example
Example#1543 - Extending mysqli class
Example#1544 - Manual error handling
Example#1545 - Generating a Trace File
Example#1546 - $mysqli->errno example
Example#1547 - $mysqli->error example
Example#1548 - $mysqli->error_list example
Example#1549 - mysqli::execute_query example
Example#1550 - $mysqli->field_count example
Example#1551 - mysqli::get_charset example
Example#1552 - mysqli_get_client_info
Example#1553 - mysqli_get_client_version
Example#1554 - A mysqli_get_connection_stats example
Example#1555 - $mysqli->host_info example
Example#1556 - $mysqli->protocol_version example
Example#1557 - $mysqli->server_info example
Example#1558 - $mysqli->server_version example
Example#1559 - Traversing the linked list to fetch all warnings
Example#1560 - $mysqli->info example
Example#1561 - $mysqli->insert_id example
Example#1562 - mysqli::kill example
Example#1563 - mysqli::multi_query example
Example#1564 - mysqli::ping example
Example#1565 - A mysqli_poll example
Example#1566 - mysqli::prepare example
Example#1567 - mysqli::query example
Example#1568 - mysqli::real_connect example
Example#1569 - mysqli::real_escape_string example
Example#1570 - mysqli::select_db example
Example#1571 - mysqli::set_charset example
Example#1572 - $mysqli->sqlstate example
Example#1573 - mysqli::stat example
Example#1574 - $mysqli->thread_id example
Example#1575 - mysqli::use_result example
Example#1576 - $mysqli->warning_count example
Example#1577 - mysqli_stmt_affected_rows example
Example#1578 - mysqli_stmt::bind_param example
Example#1579 - Using ... to provide arguments
Example#1580 - Stile orientato agli oggetti
Example#1581 - Stile procedurale
Example#1582 - Stile orientato agli oggetti
Example#1583 - Stile procedurale
Example#1584 - Stile orientato agli oggetti
Example#1585 - Stile procedurale
Example#1586 - Stile orientato agli oggetti
Example#1587 - Stile procedurale
Example#1588 - Stile orientato agli oggetti
Example#1589 - Stile procedurale
Example#1590 - Execute a prepared statement with bound variables
Example#1591 - Execute a prepared statement with an array of values
Example#1592 - Stile orientato agli oggetti
Example#1593 - Stile procedurale
Example#1594 - Stile orientato agli oggetti
Example#1595 - Stile procedurale
Example#1596 - Stile orientato agli oggetti
Example#1597 - Stile procedurale
Example#1598 - Stile orientato agli oggetti
Example#1599 - Stile procedurale
Example#1600 - Stile orientato agli oggetti
Example#1601 - Stile procedurale
Example#1602 - mysqli_stmt::prepare example
Example#1603 - Stile orientato agli oggetti
Example#1604 - Stile procedurale
Example#1605 - Stile orientato agli oggetti
Example#1606 - Stile orientato agli oggetti
Example#1607 - Stile procedurale
Example#1608 - Stile orientato agli oggetti
Example#1609 - Stile procedurale
Example#1610 - Creation of a mysqli_result object
Example#1611 - Stile orientato agli oggetti
Example#1612 - Stile procedurale
Example#1613 - mysqli::data_seek example
Example#1614 - Adjusting the result pointer when iterating
Example#1615 - mysqli_result::fetch_all example
Example#1616 - mysqli_result::fetch_array example
Example#1617 - mysqli_result::fetch_assoc example
Example#1618 - Comparison of mysqli_result iterator and mysqli_result::fetch_assoc usage
Example#1619 - mysqli_result::fetch_column example
Example#1620 - Stile orientato agli oggetti
Example#1621 - Stile procedurale
Example#1622 - Stile orientato agli oggetti
Example#1623 - Stile procedurale
Example#1624 - Stile orientato agli oggetti
Example#1625 - Stile procedurale
Example#1626 - mysqli_result::fetch_object example
Example#1627 - mysqli_result::fetch_row example
Example#1628 - Stile orientato agli oggetti
Example#1629 - Stile procedurale
Example#1630 - Stile orientato agli oggetti
Example#1631 - Stile procedurale
Example#1632 - Stile orientato agli oggetti
Example#1633 - Stile procedurale
Example#1634 - Stile orientato agli oggetti
Example#1635 - Stile procedurale
Example#1636 - Stile orientato agli oggetti
Example#1637 - Stile procedurale
Example#1638 - Error reporting except bad index errors
Example#1639 - A mysqli_get_client_stats example
Example#1640 - Connecting to a MySQL Server
Example#1641 - Creating a Schema and Collection on the MySQL Server
Example#1642 - Storing and Retrieving Data
Example#1643 - Fetching and Iterating Multiple Documents
Example#1644 - mysql_xdevapi\Expression example
Example#1645 - URI examples
Example#1646 - mysql_xdevapi\getSession example
Example#1647 - mysql_xdevapi\RowResult::getWarnings example
Example#1648 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1649 - mysql_xdevapi\Client::__construct example
Example#1650 - mysql_xdevapi\Collection::add example
Example#1651 - mysql_xdevapi\Collection::addOrReplaceOne example
Example#1652 - mysql_xdevapi\Collection::getOne example
Example#1653 - mysql_xdevapi\Collection::count example
Example#1654 - mysql_xdevapi\Collection::createIndex example
Example#1655 - mysql_xdevapi\Collection::dropIndex example
Example#1656 - mysql_xdevapi\Collection::existsInDatabase example
Example#1657 - mysql_xdevapi\Collection::find example
Example#1658 - mysql_xdevapi\Collection::getName example
Example#1659 - mysql_xdevapi\Collection::getOne example
Example#1660 - mysql_xdevapi\Collection::getSchema example
Example#1661 - mysql_xdevapi\Collection::getSession example
Example#1662 - mysql_xdevapi\Collection::modify example
Example#1663 - mysql_xdevapi\Collection::remove example
Example#1664 - mysql_xdevapi\Collection::removeOne example
Example#1665 - mysql_xdevapi\Collection::replaceOne example
Example#1666 - mysql_xdevapi\CollectionAdd::__construct example
Example#1667 - mysql_xdevapi\CollectionAdd::execute example
Example#1668 - mysql_xdevapi\CollectionFind::bind example
Example#1669 - CollectionFind example
Example#1670 - CollectionFind example
Example#1671 - mysql_xdevapi\CollectionFind::fields example
Example#1672 - mysql_xdevapi\CollectionFind::groupBy example
Example#1673 - mysql_xdevapi\CollectionFind::having example
Example#1674 - mysql_xdevapi\CollectionFind::limit example
Example#1675 - mysql_xdevapi\CollectionFind::lockExclusive example
Example#1676 - mysql_xdevapi\CollectionFind::lockShared example
Example#1677 - mysql_xdevapi\CollectionFind::offset example
Example#1678 - mysql_xdevapi\CollectionFind::sort example
Example#1679 - mysql_xdevapi\CollectionModify::arrayAppend example
Example#1680 - mysql_xdevapi\CollectionModify::arrayInsert example
Example#1681 - mysql_xdevapi\CollectionModify::bind example
Example#1682 - mysql_xdevapi\CollectionModify::__construct example
Example#1683 - mysql_xdevapi\CollectionModify::execute example
Example#1684 - mysql_xdevapi\CollectionModify::limit example
Example#1685 - mysql_xdevapi\CollectionModify::patch example
Example#1686 - mysql_xdevapi\CollectionModify::replace example
Example#1687 - mysql_xdevapi\CollectionModify::set example
Example#1688 - mysql_xdevapi\CollectionModify::skip example
Example#1689 - mysql_xdevapi\CollectionModify::sort example
Example#1690 - mysql_xdevapi\CollectionModify::unset example
Example#1691 - mysql_xdevapi\CollectionRemove::bind example
Example#1692 - mysql_xdevapi\Collection::remove example
Example#1693 - mysql_xdevapi\CollectionRemove::execute example
Example#1694 - mysql_xdevapi\CollectionRemove::limit example
Example#1695 - mysql_xdevapi\CollectionRemove::sort example
Example#1696 - mysql_xdevapi\ColumnResult::__construct example
Example#1697 - mysql_xdevapi\ColumnResult::getCharacterSetName example
Example#1698 - mysql_xdevapi\ColumnResult::getCollationName example
Example#1699 - mysql_xdevapi\ColumnResult::getColumnLabel example
Example#1700 - mysql_xdevapi\ColumnResult::getColumnName example
Example#1701 - mysql_xdevapi\ColumnResult::getFractionalDigits example
Example#1702 - mysql_xdevapi\ColumnResult::getLength example
Example#1703 - mysql_xdevapi\ColumnResult::getSchemaName example
Example#1704 - mysql_xdevapi\ColumnResult::getTableLabel example
Example#1705 - mysql_xdevapi\ColumnResult::getTableName example
Example#1706 - mysql_xdevapi\ColumnResult::getType example
Example#1707 - mysql_xdevapi\ColumnResult::isNumberSigned example
Example#1708 - mysql_xdevapi\ColumnResult::isPadded example
Example#1709 - mysql_xdevapi\CrudOperationBindable::bind example
Example#1710 - mysql_xdevapi\CrudOperationLimitable::limit example
Example#1711 - mysql_xdevapi\CrudOperationSkippable::skip example
Example#1712 - mysql_xdevapi\CrudOperationSortable::sort example
Example#1713 - mysql_xdevapi\DatabaseObject::existsInDatabase example
Example#1714 - mysql_xdevapi\DatabaseObject::getName example
Example#1715 - mysql_xdevapi\DatabaseObject::getSession example
Example#1716 - A DocResult example
Example#1717 - mysql_xdevapi\DocResult::fetchAll example
Example#1718 - mysql_xdevapi\DocResult::fetchOne example
Example#1719 - mysql_xdevapi\DocResult::getWarnings example
Example#1720 - mysql_xdevapi\DocResult::getWarningsCount example
Example#1721 - execute() examples
Example#1722 - mysql_xdevapi\ExecutionStatus::__construct example
Example#1723 - mysql_xdevapi\Expression::__construct example
Example#1724 - mysql_xdevapi\Result::__construct example
Example#1725 - mysql_xdevapi\Result::getAffectedItemsCount example
Example#1726 - mysql_xdevapi\Result::getAutoIncrementValue example
Example#1727 - mysql_xdevapi\Result::getGeneratedIds example
Example#1728 - mysql_xdevapi\RowResult::getWarnings example
Example#1729 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1730 - mysql_xdevapi\RowResult::__construct example
Example#1731 - mysql_xdevapi\RowResult::fetchAll example
Example#1732 - mysql_xdevapi\RowResult::fetchOne example
Example#1733 - mysql_xdevapi\RowResult::getColumnsCount example
Example#1734 - mysql_xdevapi\RowResult::getColumnNames example
Example#1735 - mysql_xdevapi\RowResult::getColumns example
Example#1736 - mysql_xdevapi\RowResult::getWarnings example
Example#1737 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1738 - mysql_xdevapi\Schema::__construct example
Example#1739 - mysql_xdevapi\Schema::createCollection example
Example#1740 - mysql_xdevapi\Schema::createCollection example
Example#1741 - mysql_xdevapi\Schema::dropCollection example
Example#1742 - mysql_xdevapi\Schema::existsInDatabase example
Example#1743 - mysql_xdevapi\Schema::getCollection example
Example#1744 - mysql_xdevapi\Schema::getCollectionAsTable example
Example#1745 - mysql_xdevapi\Schema::getCollections example
Example#1746 - mysql_xdevapi\Schema::getName example
Example#1747 - mysql_xdevapi\Schema::getSession example
Example#1748 - mysql_xdevapi\Schema::getTable example
Example#1749 - mysql_xdevapi\Schema::getTables example
Example#1750 - mysql_xdevapi\Session::getSchema example
Example#1751 - mysql_xdevapi\Session::close example
Example#1752 - mysql_xdevapi\Session::commit example
Example#1753 - mysql_xdevapi\Session::__construct example
Example#1754 - mysql_xdevapi\Session::createSchema example
Example#1755 - mysql_xdevapi\Session::dropSchema example
Example#1756 - mysql_xdevapi\Session::generateUuid example
Example#1757 - mysql_xdevapi\Session::getSchema example
Example#1758 - mysql_xdevapi\Session::getSchema example
Example#1759 - mysql_xdevapi\Session::getSchemas example
Example#1760 - mysql_xdevapi\Session::getServerVersion example
Example#1761 - mysql_xdevapi\Session::listClients example
Example#1762 - mysql_xdevapi\Session::quoteName example
Example#1763 - mysql_xdevapi\Session::releaseSavepoint example
Example#1764 - mysql_xdevapi\Session::rollback example
Example#1765 - mysql_xdevapi\Session::rollbackTo example
Example#1766 - mysql_xdevapi\Session::setSavepoint example
Example#1767 - mysql_xdevapi\Session::sql example
Example#1768 - mysql_xdevapi\Session::startTransaction example
Example#1769 - mysql_xdevapi\SqlStatement::bind example
Example#1770 - mysql_xdevapi\SqlStatement::__construct example
Example#1771 - mysql_xdevapi\SqlStatement::execute example
Example#1772 - mysql_xdevapi\SqlStatement::getNextResult example
Example#1773 - mysql_xdevapi\SqlStatement::getResult example
Example#1774 - mysql_xdevapi\SqlStatement::hasMoreResults example
Example#1775 - mysql_xdevapi\SqlStatementResult::__construct example
Example#1776 - mysql_xdevapi\SqlStatementResult::fetchAll example
Example#1777 - mysql_xdevapi\SqlStatementResult::fetchOne example
Example#1778 - mysql_xdevapi\SqlStatementResult::getAffectedItemsCount example
Example#1779 - mysql_xdevapi\SqlStatementResult::getColumnsCount example
Example#1780 - mysql_xdevapi\SqlStatementResult::getColumnNames example
Example#1781 - mysql_xdevapi\SqlStatementResult::getColumns example
Example#1782 - mysql_xdevapi\SqlStatementResult::getGeneratedIds example
Example#1783 - mysql_xdevapi\SqlStatementResult::getLastInsertId example
Example#1784 - mysql_xdevapi\SqlStatementResult::getWarnings example
Example#1785 - mysql_xdevapi\SqlStatementResult::getWarningsCount example
Example#1786 - mysql_xdevapi\SqlStatementResult::hasData example
Example#1787 - mysql_xdevapi\SqlStatementResult::nextResult example
Example#1788 - mysql_xdevapi\Statement::__construct example
Example#1789 - mysql_xdevapi\Statement::getNextResult example
Example#1790 - mysql_xdevapi\Statement::getResult example
Example#1791 - mysql_xdevapi\Statement::hasMoreResults example
Example#1792 - mysql_xdevapi\Table::__construct example
Example#1793 - mysql_xdevapi\Table::count example
Example#1794 - mysql_xdevapi\Table::delete example
Example#1795 - mysql_xdevapi\Table::existsInDatabase example
Example#1796 - mysql_xdevapi\Table::getName example
Example#1797 - mysql_xdevapi\Table::getSchema example
Example#1798 - mysql_xdevapi\Table::getSession example
Example#1799 - mysql_xdevapi\Table::insert example
Example#1800 - mysql_xdevapi\Table::isView example
Example#1801 - mysql_xdevapi\Table::count example
Example#1802 - mysql_xdevapi\Table::update example
Example#1803 - mysql_xdevapi\TableDelete::bind example
Example#1804 - mysql_xdevapi\TableDelete::__construct example
Example#1805 - mysql_xdevapi\TableDelete::execute example
Example#1806 - mysql_xdevapi\TableDelete::limit example
Example#1807 - mysql_xdevapi\TableDelete::orderBy example
Example#1808 - mysql_xdevapi\TableDelete::where example
Example#1809 - mysql_xdevapi\TableInsert::__construct example
Example#1810 - mysql_xdevapi\TableInsert::execute example
Example#1811 - mysql_xdevapi\TableInsert::values example
Example#1812 - mysql_xdevapi\TableSelect::bind example
Example#1813 - mysql_xdevapi\TableSelect::__construct example
Example#1814 - mysql_xdevapi\TableSelect::execute example
Example#1815 - mysql_xdevapi\TableSelect::groupBy example
Example#1816 - mysql_xdevapi\TableSelect::having example
Example#1817 - mysql_xdevapi\TableSelect::limit example
Example#1818 - mysql_xdevapi\TableSelect::lockExclusive example
Example#1819 - mysql_xdevapi\TableSelect::lockShared example
Example#1820 - mysql_xdevapi\TableSelect::offset example
Example#1821 - mysql_xdevapi\TableSelect::orderBy example
Example#1822 - mysql_xdevapi\TableSelect::where example
Example#1823 - mysql_xdevapi\TableUpdate::bind example
Example#1824 - mysql_xdevapi\TableUpdate::__construct example
Example#1825 - mysql_xdevapi\TableUpdate::execute example
Example#1826 - mysql_xdevapi\TableUpdate::limit example
Example#1827 - mysql_xdevapi\TableUpdate::orderby example
Example#1828 - mysql_xdevapi\TableUpdate::set example
Example#1829 - mysql_xdevapi\TableUpdate::where example
Example#1830 - mysql_xdevapi\Warning::__construct example
Example#1831 - MySQL extension overview example
Example#1832 - mysql_affected_rows example
Example#1833 - mysql_affected_rows example using transactions
Example#1834 - mysql_client_encoding example
Example#1835 - mysql_close example
Example#1836 - mysql_connect example
Example#1837 - mysql_connect example using hostname:port syntax
Example#1838 - mysql_connect example using ":/path/to/socket" syntax
Example#1839 - mysql_create_db alternative example
Example#1840 - mysql_data_seek example
Example#1841 - mysql_db_name example
Example#1842 - mysql_db_query alternative example
Example#1843 - mysql_drop_db alternative example
Example#1844 - mysql_errno example
Example#1845 - mysql_error example
Example#1846 - mysql_escape_string example
Example#1847 - Query with aliased duplicate field names
Example#1848 - mysql_fetch_array with MYSQL_NUM
Example#1849 - mysql_fetch_array with MYSQL_ASSOC
Example#1850 - mysql_fetch_array with MYSQL_BOTH
Example#1851 - An expanded mysql_fetch_assoc example
Example#1852 - mysql_fetch_field example
Example#1853 - A mysql_fetch_lengths example
Example#1854 - mysql_fetch_object example
Example#1855 - mysql_fetch_object example
Example#1856 - Fetching one row with mysql_fetch_row
Example#1857 - A mysql_field_flags example
Example#1858 - mysql_field_len example
Example#1859 - mysql_field_name example
Example#1860 - A mysql_field_table example
Example#1861 - mysql_field_type example
Example#1862 - A mysql_free_result example
Example#1863 - mysql_get_client_info example
Example#1864 - mysql_get_host_info example
Example#1865 - mysql_get_proto_info example
Example#1866 - mysql_get_server_info example
Example#1867 - Relevant MySQL Statements
Example#1868 - mysql_insert_id example
Example#1869 - mysql_list_dbs example
Example#1870 - Alternate to deprecated mysql_list_fields
Example#1871 - mysql_list_processes example
Example#1872 - mysql_list_tables alternative example
Example#1873 - A mysql_num_fields example
Example#1874 - mysql_num_rows example
Example#1875 - A mysql_ping example
Example#1876 - Invalid Query
Example#1877 - Valid Query
Example#1878 - Simple mysql_real_escape_string example
Example#1879 - mysql_real_escape_string requires a connection example
Example#1880 - An example SQL Injection Attack
Example#1881 - mysql_result example
Example#1882 - mysql_select_db example
Example#1883 - mysql_stat example
Example#1884 - Alternative mysql_stat example
Example#1885 - mysql_tablename example
Example#1886 - mysql_thread_id example
Example#1887 - Examples of code snippets that cause an explicit close
Example#1888 - Examples of code snippets that cause an implicit close
Example#1889 - Usage examples
Example#1890 - Basic query
Example#1891 - Inserting with bind variables
Example#1892 - Binding in the WHERE clause of a query
Example#1893 - Inserting and fetching a CLOB
Example#1894 - Using a PL/SQL stored function
Example#1895 - Using a PL/SQL stored procedure
Example#1896 - Calling a PL/SQL function that returns a REF CURSOR
Example#1897 - Registering a TAF callback
Example#1898 - user_oci8_probes.d for tracing all user-level PHP OCI8 Static Probes with DTrace
Example#1899 - oci_bind_array_by_name example
Example#1900 - Inserimento di dati con oci_bind_by_name
Example#1901 - Binding una sola volta per più esecuzioni
Example#1902 - Binding con un ciclo foreach
Example#1903 - Binding in una clausola WHERE
Example#1904 - Binding con una clausola LIKE
Example#1905 - Binding con REGEXP_LIKE
Example#1906 - Binding di più valori in una clausola IN
Example#1907 - Binding di un ROWID restituito da una query
Example#1908 - Binding di un ROWID su INSERT
Example#1909 - Binding per una stored function PL/SQL
Example#1910 - Binding di parametri per una stored procedure PL/SQL
Example#1911 - Binding di una colonna CLOB
Example#1912 - Binding di un BOOLEAN PL/SQL
Example#1913 - oci_client_version example
Example#1914 - Closing a connection
Example#1915 - Database connections are not closed until all references are closed
Example#1916 - Closing a connection opened more than once
Example#1917 - Connections are closed when variables go out of scope
Example#1918 - oci_commit example
Example#1919 - Basic oci_connect using Easy Connect syntax
Example#1920 - Basic oci_connect using a Network Connect name
Example#1921 - oci_connect with an explicit character set
Example#1922 - Using multiple calls to oci_connect
Example#1923 - oci_define_by_name example
Example#1924 - oci_define_by_name with case sensitive column names
Example#1925 - oci_define_by_name with LOB columns
Example#1926 - oci_define_by_name with an explicit type
Example#1927 - Displaying the Oracle error message after a connection error
Example#1928 - Displaying the Oracle error message after a parsing error
Example#1929 - Displaying the Oracle error message, the problematic statement, and the position of the problem of an execution error
Example#1930 - oci_execute for queries
Example#1931 - oci_execute without specifying a mode example
Example#1932 - oci_execute with OCI_NO_AUTO_COMMIT example
Example#1933 - oci_execute with different commit modes example
Example#1934 - oci_execute with OCI_DESCRIBE_ONLY example
Example#1935 - oci_fetch with defined variables
Example#1936 - oci_fetch with oci_result
Example#1937 - oci_fetch_all example
Example#1938 - oci_fetch_all example with OCI_FETCHSTATEMENT_BY_ROW
Example#1939 - oci_fetch_all with OCI_NUM
Example#1940 - oci_fetch_array with OCI_BOTH
Example#1941 - oci_fetch_array with OCI_NUM
Example#1942 - oci_fetch_array with OCI_ASSOC
Example#1943 - oci_fetch_array with OCI_RETURN_NULLS
Example#1944 - oci_fetch_array with OCI_RETURN_LOBS
Example#1945 - oci_fetch_array with case sensitive column names
Example#1946 - oci_fetch_array with columns having duplicate names
Example#1947 - oci_fetch_array with DATE columns
Example#1948 - oci_fetch_array with REF CURSOR
Example#1949 - Pagination with oci_fetch_array using a LIMIT-like query
Example#1950 - oci_fetch_array with Oracle Database Implicit Result Sets
Example#1951 - oci_fetch_assoc Example
Example#1952 - oci_fetch_object example
Example#1953 - oci_fetch_object with case sensitive column names
Example#1954 - oci_fetch_object with LOBs
Example#1955 - oci_fetch_row Example
Example#1956 - oci_field_name example
Example#1957 - oci_field_name example
Example#1958 - oci_field_precision Example
Example#1959 - oci_field_scale Example
Example#1960 - oci_field_size example
Example#1961 - oci_field_type example
Example#1962 - oci_field_type_raw Example
Example#1963 - Fetching Implicit Result Sets in a loop
Example#1964 - Getting child statement handles individually
Example#1965 - Explicitly setting the Prefetch Count
Example#1966 - Implicit Result Set example without using oci_get_implicit_resultset
Example#1967 - oci_new_connect example
Example#1968 - Binding a REF CURSOR in an Oracle stored procedure call
Example#1969 - oci_new_descriptor example
Example#1970 - oci_new_descriptor example
Example#1971 - oci_num_fields example
Example#1972 - oci_num_rows example
Example#1973 - oci_parse example for SQL statements
Example#1974 - oci_parse example for PL/SQL statements
Example#1975 - oci_password_change example changing the password of an already connected user
Example#1976 - oci_password_change example of connecting and changing the password in one step
Example#1977 - Basic oci_pconnect Example using Easy Connect syntax
Example#1978 - oci_fetch with oci_result
Example#1979 - oci_rollback example
Example#1980 - Rolling back to a SAVEPOINT example
Example#1981 - oci_server_version example
Example#1982 - Setting the action
Example#1983 - Setting the timeout
Example#1984 - Setting the client identifier to the application user
Example#1985 - Setting the client information
Example#1986 - Setting the DBOP
Example#1987 - Two scripts can use different versions of myfunc() at the same time
Example#1988 - Setting the module name
Example#1989 - Changing the default prefetch value for a query
Example#1990 - Changing the default prefetch for a REF CURSOR fetch
Example#1991 - Setting the prefetch value when passing a REF CURSOR back to Oracle
Example#1992 - Changing the LOB prefetch value for a query
Example#1993 - oci_statement_type example
Example#1994 - PostgreSQL extension overview example
Example#1995 - PostgreSQL user defined functions example
Example#1996 - pg_affected_rows
Example#1997 - Uso di pg_connect
Example#1998 - pg_delete
Example#1999 - pg_escape_identifier example
Example#2000 - pg_escape_literal example
Example#2001 - Using pg_execute
Example#2002 - PostgreSQL fetch array
Example#2003 - pg_fetch_all_columns example
Example#2004 - PostgreSQL fetch array
Example#2005 - Esempio di pg_fetch_assoc
Example#2006 - Postgres fetch object
Example#2007 - Postgres fetch row
Example#2008 - Getting table information about a field
Example#2009 - Getting information about fields
Example#2010 - Messaggio NOTIFY di PostgreSQL
Example#2011 - PID del backend PostgreSQL
Example#2012 - pg_insert
Example#2013 - Esempio di pg_lo_import
Example#2014 - pg_lo_truncate example
Example#2015 - pg_parameter_status example
Example#2016 - Esempio di pg_ping
Example#2017 - Using pg_prepare
Example#2018 - Inserimento ad alta velocità dai dati in una tabella
Example#2019 - Using pg_query_params
Example#2020 - pg_result_error_field example
Example#2021 - pg_result_memory_size example
Example#2022 - Esempio di pg_result_seek
Example#2023 - pg_select
Example#2024 - Using pg_send_execute
Example#2025 - Using pg_send_prepare
Example#2026 - Using pg_send_query_params
Example#2027 - pg_result_memory_size example
Example#2028 - pg_set_error_context_visibility example
Example#2029 - pg_set_error_verbosity example
Example#2030 - pg_transaction_status example
Example#2031 - Esempio di pg_unescape_bytea
Example#2032 - pg_update
Example#2033 - pg_version example
Example#2034 - Backup an existing database
Example#2035 - SQLite3::changes example
Example#2036 - SQLite3::close example
Example#2037 - SQLite3::__construct example
Example#2038 - max_length aggregation function example
Example#2039 - SQLite3::createCollation example
Example#2040 - SQLite3::createFunction example
Example#2041 - SQLite3::enableExceptions example
Example#2042 - SQLite3::exec example
Example#2043 - SQLite3::loadExtension example
Example#2044 - SQLite3::open example
Example#2045 - SQLite3::openBlob example
Example#2046 - Incrementally writing a BLOB
Example#2047 - SQLite3::prepare example
Example#2048 - SQLite3::query example
Example#2049 - SQLite3::querySingle example
Example#2050 - SQLite3::setAuthorizer example
Example#2051 - SQLite3::version example
Example#2052 - SQLite3Stmt::bindParam Usage
Example#2053 - SQLite3Stmt::bindValue example
Example#2054 - Inspecting the expanded SQL
Example#2055 - sqlsrv_begin_transaction example
Example#2056 - sqlsrv_cancel example
Example#2057 - sqlsrv_client_info example
Example#2058 - sqlsrv_close example
Example#2059 - sqlsrv_commit example
Example#2060 - Connect using Windows Authentication.
Example#2061 - Connect by specifying a user name and password.
Example#2062 - Connect on a specified port.
Example#2063 - functionname example
Example#2064 - sqlsrv_execute example
Example#2065 - sqlsrv_fetch example
Example#2066 - Retrieving an associative array.
Example#2067 - Retrieving a numeric array.
Example#2068 - sqlsrv_fetch_object example
Example#2069 - sqlsrv_field_metadata example
Example#2070 - sqlsrv_free_stmt example
Example#2071 - sqlsrv_get_field example
Example#2072 - sqlsrv_has_rows example
Example#2073 - sqlsrv_next_result example
Example#2074 - sqlsrv_num_fields example
Example#2075 - sqlsrv_num_rows example
Example#2076 - sqlsrv_prepare example
Example#2077 - sqlsrv_query example
Example#2078 - sqlsrv_rollback example
Example#2079 - sqlsrv_rows_affected example
Example#2080 - sqlsrv_send_stream_data example
Example#2081 - sqlsrv_server_info example
Example#2082 - esempio di cal_days_in_month
Example#2083 - esempio di cal_from_jd
Example#2084 - esempio di easter_date
Example#2085 - esempio di easter_days
Example#2086 - Calendar functions
Example#2087 - esempio di jdtojewish
Example#2088 - DateTimeImmutable::add/sub add intervals which cover elapsed time
Example#2089 - DateTimeImmutable::modify and strtotime increment or decrement individual component values
Example#2090 - Adding or subtracting times can over- or underflow dates
Example#2091 - Creating a mutable date time object
Example#2092 - Creating a mutable date time object
Example#2093 - DateTime::createFromTimestamp example
Example#2094 - DateTime::modify example
Example#2095 - Beware when adding or subtracting months
Example#2096 - All formats of Date and Time are supported
Example#2097 - DateTime::setMicrosecond example
Example#2098 - DateTime::setTimeZone example
Example#2099 - DateTimeImmutable::add example
Example#2100 - Further DateTimeImmutable::add examples
Example#2101 - Beware when adding months
Example#2102 - DateTimeImmutable::__construct example
Example#2103 - Intricacies of DateTimeImmutable::__construct
Example#2104 - Changing the associated timezone
Example#2105 - Using a relative date/time string
Example#2106 - DateTimeImmutable::createFromFormat example
Example#2107 - Using predefined format constants with DateTimeImmutable::createFromFormat
Example#2108 - Intricacies of DateTimeImmutable::createFromFormat
Example#2109 - Format string with literal characters
Example#2110 - Overflow behaviour
Example#2111 - Overflowing day name behaviour
Example#2112 - Detecting overflown dates
Example#2113 - Greedy parsing behaviour
Example#2114 - Creating an immutable date time object
Example#2115 - Creating an immutable date time object
Example#2116 - DateTimeImmutable::createFromTimestamp example
Example#2117 - DateTimeImmutable::getLastErrors example
Example#2118 - Detecting rolled over dates
Example#2119 - DateTimeImmutable::modify example
Example#2120 - Beware when adding or subtracting months
Example#2121 - DateTimeImmutable::setDate example
Example#2122 - Values exceeding ranges are added to their parent values
Example#2123 - DateTimeImmutable::setISODate example
Example#2124 - Values exceeding ranges are added to their parent values
Example#2125 - Finding the month a week is in
Example#2126 - DateTimeImmutable::setMicrosecond example
Example#2127 - DateTimeImmutable::setTime example
Example#2128 - Values exceeding ranges are added to their parent values
Example#2129 - DateTimeImmutable::setTimestamp example
Example#2130 - DateTimeImmutable::setTimeZone example
Example#2131 - DateTimeImmutable::sub example
Example#2132 - Further DateTimeImmutable::sub examples
Example#2133 - Beware when subtracting months
Example#2134 - DateTimeImmutable::diff example
Example#2135 - DateTimeInterface::diff during DST changeover
Example#2136 - DateTimeInterface::diff range
Example#2137 - DateTime object comparison
Example#2138 - DateTimeInterface::format example
Example#2139 - More examples
Example#2140 - Escaping characters while formatting
Example#2141 - DateTimeInterface::getMicrosecond example
Example#2142 - DateTime::getOffset example
Example#2143 - DateTime::getTimestamp example
Example#2144 - Retrieving timestamp with milli and microsecond resolution
Example#2145 - DateTime::getTimezone example
Example#2146 - DateTime::serialize example
Example#2147 - DateTime::unserialize example
Example#2148 - Creating and attaching DateTimeZone to a DateTimeImmutable
Example#2149 - Catching errors when instantiating DateTimeZone
Example#2150 - DateTimeZone::getLocation example
Example#2151 - DateTimeZone::getOffset examples
Example#2152 - A timezone_transitions_get example
Example#2153 - A timezone_transitions_get example with timestampBegin set
Example#2154 - A timezone_abbreviations_list example
Example#2155 - List identifiers with location comments
Example#2156 - Listing identifiers for a specific region
Example#2157 - Listing identifiers for multiple regions
Example#2158 - Listing identifiers for a single country
Example#2159 - Constructing and using DateInterval objects
Example#2160 - DateInterval example
Example#2161 - Parsing valid date intervals
Example#2162 - Parsing combinations and negative intervals
Example#2163 - Parsing special relative date intervals
Example#2164 - DateInterval example
Example#2165 - DateInterval and carry over points
Example#2166 - DateInterval and DateTime::diff with the %a and %d modifiers
Example#2167 - DatePeriod example
Example#2168 - DatePeriod example with DatePeriod::EXCLUDE_START_DATE
Example#2169 - DatePeriod example showing all last Thursdays in a year
Example#2170 - DatePeriod::createFromISO8601String example
Example#2171 - DatePeriod::getDateInterval example
Example#2172 - DatePeriod::getEndDate example
Example#2173 - DatePeriod::getEndDate without an end date
Example#2174 - Different values for DatePeriod::getRecurrences
Example#2175 - DatePeriod::getStartDate example
Example#2176 - Esempio di checkdate
Example#2177 - Esempi di date
Example#2178 - Effettuare l'escape dei caratteri in date
Example#2179 - Esempio di date e di mktime
Example#2180 - Formattazione di date
Example#2181 - Getting the default timezone
Example#2182 - Getting the abbreviation of a timezone
Example#2183 - Getting the default timezone
Example#2184 - A date_parse example with a comprehensive datetime string
Example#2185 - date_parse with timezone abbreviation information
Example#2186 - date_parse with timezone identifier information
Example#2187 - date_parse with a minimal string
Example#2188 - date_parse with relative formats
Example#2189 - date_parse with side-effects
Example#2190 - date_parse_from_format example
Example#2191 - date_parse_from_format with warnings example
Example#2192 - date_parse_from_format with errors example
Example#2193 - A date_sun_info example
Example#2194 - Polar night, with some processing
Example#2195 - Midnight sun (Tromsø, Norway)
Example#2196 - Calculating length of day (Kyiv)
Example#2197 - date_sunrise example
Example#2198 - No sunrise
Example#2199 - date_sunset example
Example#2200 - No sunset
Example#2201 - Esempio di getdate
Example#2202 - Esempio di gettimeofday
Example#2203 - Esempio di gmdate
Example#2204 - Esempio di gmstrftime
Example#2205 - idate example
Example#2206 - Cronometrare l'esecuzione di uno script con microtime
Example#2207 - Cronometrare l'esecuzione di uno script in PHP 5
Example#2208 - microtime and REQUEST_TIME_FLOAT (as of PHP 5.4.0)
Example#2209 - Esempio di base di mktime
Example#2210 - Esempio di mktime
Example#2211 - Uso di mktime per trovare date relative
Example#2212 - Ultimo giorno di un mese
Example#2213 - Esempio di strftime
Example#2214 - strptime example
Example#2215 - Un esempio di strtotime
Example#2216 - Controllo per il fallimento
Example#2217 - A timezone_name_from_abbr example
Example#2218 - Getting the timezonedb version
Example#2219 - Measure several code blocks execution and get the total
Example#2220 - Chiusura di un descrittore di file aperto
Example#2221 - Impostare e cancellare un lock
Example#2222 - Apertura di un descrittore di file
Example#2223 - Posizionamento in un file
Example#2224 - Esempio di impostazione della velocità di una porta seriale
Example#2225 - Esempio di chdir
Example#2226 - dir example
Example#2227 - Esempio di uso di getcwd
Example#2228 - esempio opendir
Example#2229 - Elenca tutti i file presenti in una directory
Example#2230 - Elenca tutti i file della directory in uso ed elimina . e ..
Example#2231 - A simple scandir example
Example#2232 - A finfo_buffer example
Example#2233 - A finfo_file example
Example#2234 - Stile orientato agli oggetti
Example#2235 - Stile procedurale
Example#2236 - mime_content_type Example
Example#2237 - Esempio di basename
Example#2238 - Modifica del gruppo di un file
Example#2239 - Semplice utilizzo di chown
Example#2240 - copy example
Example#2241 - Esempio di dirname
Example#2242 - Esempio disk_free_space
Example#2243 - disk_total_space example
Example#2244 - Un semplice esempio di fclose
Example#2245 - fdatasync example
Example#2246 - Un esempio per fgetc
Example#2247 - Legge e stampa il contenuto di un file CSV
Example#2248 - Legge un file riga per riga
Example#2249 - Esempio di file
Example#2250 - Verificare l'esistenza di un file
Example#2251 - Simple usage example
Example#2252 - Using flags
Example#2253 - Esempio per fileatime
Example#2254 - Esempio di uso di fileatime
Example#2255 - Trovare il gruppo di un file
Example#2256 - Esempio di uso di filemtime
Example#2257 - Mostra i permessi in valore ottale
Example#2258 - Mostra gli interi permessi
Example#2259 - Esempio di uso di filesize
Example#2260 - Esempio di uso di filetype
Example#2261 - Esempio di uso di flock
Example#2262 - Checking a color name against a shell wildcard pattern
Example#2263 - Esempi di fopen
Example#2264 - Utilizzo di fpassthru con file binari
Example#2265 - fputcsv example
Example#2266 - Un semplice esempio di fread
Example#2267 - Esempio di fread binario
Example#2268 - Esempi di fread remoti
Example#2269 - Esempio di fscanf
Example#2270 - Cntyennts of users.txt
Example#2271 - Esempio di uso di fseek
Example#2272 - Esempio di uso di fstat
Example#2273 - fsync example
Example#2274 - Esempio di uso di ftell
Example#2275 - Un esempio semplice di fwrite
Example#2276 - Convenient way how glob can replace opendir and friends.
Example#2277 - Example with a more complex pattern
Example#2278 - Esempio di uso di is_dir
Example#2279 - Esempio di uso di is_executable
Example#2280 - is_uploaded_file example
Example#2281 - Changing the group of a symbolic link
Example#2282 - Changing the owner of a symbolic link
Example#2283 - Esempio di uso di linkinfo
Example#2284 - Esempio di mkdir
Example#2285 - mkdir usando il parametro recursive
Example#2286 - Caricamento di più file
Example#2287 - Contenuto di sample.ini
Example#2288 - Esempio di parse_ini_file
Example#2289 - Leggere un file php.ini con parse_ini_file
Example#2290 - interpolazione di valori
Example#2291 - pathinfo Example
Example#2292 - Esempio di popen
Example#2293 - Esempio di popen
Example#2294 - Esempio di uso di readlink
Example#2295 - Esempio di realpath
Example#2296 - realpath_cache_get example
Example#2297 - realpath_cache_size example
Example#2298 - Esempio di uso di rename
Example#2299 - Esempio di rmdir
Example#2300 - tempnam esempio
Example#2301 - tmpfile example
Example#2302 - touch example
Example#2303 - Example usage of inotify
Example#2304 - Checks if system administrator has signed the file
Example#2305 - Prints names of all extended attributes of file
Example#2306 - Removes all extended attributes of a file
Example#2307 - Sets extended attributes on .wav file
Example#2308 - xattr_supported example
Example#2309 - xdiff_file_bdiff example
Example#2310 - xdiff_file_bdiff_size example
Example#2311 - xdiff_file_bpatch example
Example#2312 - xdiff_file_diff example
Example#2313 - xdiff_file_diff_binary example
Example#2314 - xdiff_file_merge3 example
Example#2315 - xdiff_file_patch example
Example#2316 - Patch reversing example
Example#2317 - xdiff_file_patch_binary example
Example#2318 - xdiff_file_rabdiff example
Example#2319 - xdiff_string_bdiff_size example
Example#2320 - xdiff_string_diff example
Example#2321 - xdiff_string_patch example
Example#2322 - Creation of a binary diff between two strings
Example#2323 - Enchant Usage Example
Example#2324 - List the backends provided by the given broker
Example#2325 - A enchant_broker_dict_exists example
Example#2326 - List all available dictionaries for one broker
Example#2327 - A enchant_broker_request_dict example
Example#2328 - Adding a word to a PWL
Example#2329 - A enchant_dict_describe example
Example#2330 - A enchant_dict_quick_check example
Example#2331 - A enchant_dict_suggest example
Example#2332 - Usage example.
Example#2333 - Using Gender\Gender::country
Example#2334 - bindtextdomain example
Example#2335 - gettext-check
Example#2336 - ngettext example
Example#2337 - Esempio di iconv
Example#2338 - Esempio di iconv_get_encoding
Example#2339 - iconv_mime_decode example
Example#2340 - iconv_mime_decode_headers example
Example#2341 - iconv_mime_encode example
Example#2342 - Esempio di iconv_set_encoding
Example#2343 - Esempio di ob_iconv_handler:
Example#2344 - Example of using the procedural API
Example#2345 - Example of using the object-oriented API
Example#2346 - FRENCH_COLLATION rules
Example#2347 - ALTERNATE_HANDLING rules
Example#2348 - CASE_FIRST rules
Example#2349 - CASE_LEVEL rules
Example#2350 - collator_asort example
Example#2351 - collator_compare example
Example#2352 - Comparing strings without diacritics or case-sensitivity
Example#2353 - Collator::__construct example
Example#2354 - collator_create example
Example#2355 - collator_get_attribute example
Example#2356 - collator_get_error_code example
Example#2357 - collator_get_error_message example
Example#2358 - collator_get_locale example
Example#2359 - collator_get_sort_key example
Example#2360 - Collator::getSortKey example with usort
Example#2361 - collator_get_strength example
Example#2362 - collator_set_attribute example
Example#2363 - collator_set_strength example
Example#2364 - collator_sort example
Example#2365 - collator_sort_with_sort_keys example
Example#2366 - numfmt_create example
Example#2367 - NumberFormatter::create example
Example#2368 - numfmt_format example
Example#2369 - OO example
Example#2370 - numfmt_format_currency example
Example#2371 - OO example
Example#2372 - numfmt_get_attribute example
Example#2373 - OO example
Example#2374 - numfmt_get_error_code example
Example#2375 - OO example
Example#2376 - numfmt_get_error_message example
Example#2377 - OO example
Example#2378 - numfmt_get_locale example
Example#2379 - numfmt_get_pattern example
Example#2380 - OO example
Example#2381 - numfmt_get_symbol example
Example#2382 - OO example
Example#2383 - numfmt_get_text_attribute example
Example#2384 - OO example
Example#2385 - numfmt_parse example
Example#2386 - OO example
Example#2387 - numfmt_parse_currency example
Example#2388 - OO example
Example#2389 - numfmt_set_attribute example
Example#2390 - OO example
Example#2391 - Using NumberFormatter::ROUNDING_MODE to truncate values
Example#2392 - numfmt_set_pattern example
Example#2393 - OO example
Example#2394 - numfmt_set_symbol example
Example#2395 - OO example
Example#2396 - numfmt_set_text_attribute example
Example#2397 - OO example
Example#2398 - locale_accept_from_http example
Example#2399 - OO example
Example#2400 - locale_canonicalize example
Example#2401 - locale_compose example
Example#2402 - OO example
Example#2403 - Subtag limits
Example#2404 - locale_filter_matches example
Example#2405 - OO example
Example#2406 - locale_get_all_variants example
Example#2407 - OO example
Example#2408 - locale_get_default example
Example#2409 - OO example
Example#2410 - locale_get_display_language example
Example#2411 - OO example
Example#2412 - locale_get_display_name example
Example#2413 - OO example
Example#2414 - locale_get_display_region example
Example#2415 - OO example
Example#2416 - locale_get_display_script example
Example#2417 - OO example
Example#2418 - locale_get_display_variant example
Example#2419 - OO example
Example#2420 - locale_get_keywords example
Example#2421 - OO example
Example#2422 - locale_get_primary_language example
Example#2423 - OO example
Example#2424 - locale_get_region example
Example#2425 - OO example
Example#2426 - locale_get_script example
Example#2427 - OO example
Example#2428 - Checking text direction for a locale
Example#2429 - locale_lookup example
Example#2430 - OO example
Example#2431 - locale_parse example
Example#2432 - OO example
Example#2433 - locale_set_default example
Example#2434 - OO example
Example#2435 - Normalizer::getRawDecomposition example
Example#2436 - normalizer_is_normalized example
Example#2437 - OO example
Example#2438 - normalizer_normalize example
Example#2439 - OO example
Example#2440 - msgfmt_create example
Example#2441 - OO example
Example#2442 - msgfmt_format example
Example#2443 - OO example
Example#2444 - msgfmt_format_message example
Example#2445 - OO example
Example#2446 - Instructing ICU to format currency with common and with narrow currency symbol
Example#2447 - msgfmt_get_error_message example
Example#2448 - OO example
Example#2449 - msgfmt_get_locale example
Example#2450 - OO example
Example#2451 - msgfmt_get_pattern example
Example#2452 - OO example
Example#2453 - msgfmt_parse example
Example#2454 - OO example
Example#2455 - msgfmt_parse_message example
Example#2456 - OO example
Example#2457 - msgfmt_set_pattern example
Example#2458 - OO example
Example#2459 - IntlCalendar::add
Example#2460 - IntlCalendar::after
Example#2461 - IntlCalendar::clear examples
Example#2462 - IntlCalendar::createInstance
Example#2463 - IntlCalendar::equals
Example#2464 - IntlCalendar::fieldDifference
Example#2465 - IntlCalendar::fromDateTime
Example#2466 - IntlCalendar::get
Example#2467 - IntlCalendar::getActualMaximum
Example#2468 - IntlCalendar::getAvailableLocales
Example#2469 - IntlCalendar::getDayOfWeekType
Example#2470 - IntlCalendar::getErrorCode and IntlCalendar::getErrorMessage
Example#2471 - IntlCalendar::getErrorMessage
Example#2472 - IntlCalendar::getFirstDayOfWeek
Example#2473 - IntlCalendar::getKeywordValuesForLocale
Example#2474 - Maxima examples
Example#2475 - IntlCalendar::getLocale
Example#2476 - IntlCalendar::getMinimalDaysInFirstWeek
Example#2477 - IntlCalendar::getNow
Example#2478 - IntlCalendar::getRepeatedWallTimeOption
Example#2479 - IntlCalendar::getSkippedWallTimeOption
Example#2480 - IntlCalendar::getTime
Example#2481 - IntlCalendar::getTimeZone
Example#2482 - IntlCalendar::getType
Example#2483 - IntlCalendar::inDaylightTime
Example#2484 - IntlCalendar::isEquivalentTo
Example#2485 - IntlCalendar::isLenient
Example#2486 - IntlCalendar::isWeekend
Example#2487 - IntlCalendar::roll
Example#2488 - IntlCalendar::set
Example#2489 - IntlCalendar::setDate example
Example#2490 - IntlCalendar::setDateTime example
Example#2491 - IntlCalendar::setFirstDayOfWeek
Example#2492 - IntlCalendar::setTime
Example#2493 - IntlCalendar::setTimeZone
Example#2494 - IntlCalendar::toDateTime
Example#2495 - IntlGregorianCalendar::createFromDate example
Example#2496 - IntlGregorianCalendar::createFromDateTime example
Example#2497 - datefmt_create example
Example#2498 - OO example
Example#2499 - Example of invalid locale handling
Example#2500 - datefmt_format example
Example#2501 - OO example
Example#2502 - With IntlCalendar object
Example#2503 - IntlDateFormatter::formatObject examples
Example#2504 - datefmt_get_calendar example
Example#2505 - OO example
Example#2506 - Example of invalid locale handling
Example#2507 - datefmt_get_datetype example
Example#2508 - OO example
Example#2509 - datefmt_get_error_code example
Example#2510 - OO example
Example#2511 - datefmt_get_error_message example
Example#2512 - OO example
Example#2513 - datefmt_get_locale example
Example#2514 - OO example
Example#2515 - datefmt_get_pattern example
Example#2516 - OO example
Example#2517 - datefmt_get_timetype example
Example#2518 - OO example
Example#2519 - datefmt_get_timezone_id example
Example#2520 - OO example
Example#2521 - IntlDateFormatter::getCalendarObject example
Example#2522 - IntlDateFormatter::getTimeZone examples
Example#2523 - datefmt_is_lenient example
Example#2524 - OO example
Example#2525 - datefmt_localtime example
Example#2526 - OO example
Example#2527 - OO example
Example#2528 - datefmt_parse example
Example#2529 - IntlDateFormatter::parseToCalendar example
Example#2530 - datefmt_set_calendar example
Example#2531 - OO example
Example#2532 - Example with IntlCalendar argument
Example#2533 - datefmt_set_lenient example
Example#2534 - OO example
Example#2535 - datefmt_set_pattern example
Example#2536 - OO example
Example#2537 - IntlDateFormatter::setTimeZone examples
Example#2538 - resourcebundle_count example
Example#2539 - OO example
Example#2540 - resourcebundle_create example
Example#2541 - ResourceBundle::create example
Example#2542 - resourcebundle_get example
Example#2543 - OO example
Example#2544 - resourcebundle_get_error_code example
Example#2545 - OO example
Example#2546 - resourcebundle_get_error_message example
Example#2547 - OO example
Example#2548 - resourcebundle_locales example
Example#2549 - OO example
Example#2550 - Spoofchecker::areConfusable example
Example#2551 - Spoofchecker::isSuspicious example
Example#2552 - Spoofchecker::setAllowedChars example
Example#2553 - Retrieving the registered transliterator IDs
Example#2554 - Converting escaped UTF-16 code units
Example#2555 - IntlDatePatternGenerator::getBestPattern example
Example#2556 - IntlListFormatter::format example
Example#2557 - Converting from UTF-8 to UTF-16 and back
Example#2558 - Invalid characters in input
Example#2559 - Characters which cannot be encoded
Example#2560 - grapheme_extract example
Example#2561 - grapheme_stripos example
Example#2562 - grapheme_stristr example
Example#2563 - grapheme_strlen example
Example#2564 - grapheme_strpos example
Example#2565 - grapheme_strripos example
Example#2566 - grapheme_strrpos example
Example#2567 - grapheme_strstr example
Example#2568 - grapheme_substr example
Example#2569 - idn_to_ascii example
Example#2570 - All-ASCII domain names are just converted to lowercase
Example#2571 - idn_to_utf8 example
Example#2572 - Testing different code points
Example#2573 - Testing different code points
Example#2574 - Testing different code points
Example#2575 - Testing different code points
Example#2576 - Testing different code points
Example#2577 - Testing different code points
Example#2578 - Testing different code points
Example#2579 - Testing different code points
Example#2580 - Testing different code points
Example#2581 - Enumerating over a sample range of code points
Example#2582 - Enumerating over a sample range of code points
Example#2583 - Testing different code points
Example#2584 - Testing different code points
Example#2585 - Testing different code points
Example#2586 - Testing different code points
Example#2587 - Testing different code points
Example#2588 - Testing different properties
Example#2589 - Testing different properties
Example#2590 - Testing different properties
Example#2591 - Testing different code points
Example#2592 - Testing different properties
Example#2593 - Testing different properties
Example#2594 - Testing different properties
Example#2595 - Testing different properties
Example#2596 - Testing different properties
Example#2597 - Testing different properties
Example#2598 - Testing different code points
Example#2599 - Testing different code points
Example#2600 - Testing different code points
Example#2601 - Testing different code points
Example#2602 - Testing different code points
Example#2603 - Testing different code points
Example#2604 - Testing different code points
Example#2605 - Testing different code points
Example#2606 - Testing different code points
Example#2607 - Testing different code points
Example#2608 - Testing different code points
Example#2609 - Testing different code points
Example#2610 - Testing different code points
Example#2611 - Testing different code points
Example#2612 - Testing different code points
Example#2613 - Testing different code points
Example#2614 - Testing different code points
Example#2615 - Testing different code points
Example#2616 - Testing different code points
Example#2617 - Testing different code points
Example#2618 - Testing different code points
Example#2619 - Testing different code points
Example#2620 - Testing different code points
Example#2621 - Testing different code points
Example#2622 - Testing different code points
Example#2623 - Testing different code points
Example#2624 - Testing different code points
Example#2625 - Testing different code points
Example#2626 - Testing different code points
Example#2627 - Testing different code points
Example#2628 - Testing different code points
Example#2629 - Testing different code points
Example#2630 - intl_error_name example
Example#2631 - intl_get_error_code example
Example#2632 - intl_get_error_message example
Example#2633 - intl_is_failure example
Example#2634 - php.ini setting examples
Example#2635 - php.ini setting for EUC-JP users
Example#2636 - php.ini setting for SJIS users
Example#2637 - Disable HTTP input conversion in php.ini
Example#2638 - php.ini setting example
Example#2639 - Script example
Example#2640 - Testing different code points
Example#2641 - mb_convert_case example
Example#2642 - mb_convert_case example with non-Latin UTF-8 text
Example#2643 - mb_convert_encoding example
Example#2644 - mb_convert_kana example
Example#2645 - mb_convert_variables example
Example#2646 - map example
Example#2647 - map example escapes JavaScript string
Example#2648 - mb_detect_encoding example
Example#2649 - Effect of strict parameter
Example#2650 - Effect of order when multiple encodings match
Example#2651 - mb_detect_order examples
Example#2652 - Example showing useless detect orders
Example#2653 - mb_encode_mimeheader example
Example#2654 - map example
Example#2655 - mb_encode_numericentity example
Example#2656 - mb_encoding_aliases example
Example#2657 - mb_ereg_replace_callback example
Example#2658 - mb_ereg_replace_callback using anonymous function
Example#2659 - mb_internal_encoding example
Example#2660 - mb_list_encodings example
Example#2661 - A basic mb_ord example
Example#2662 - mb_output_handler example
Example#2663 - mb_preferred_mime_name example
Example#2664 - mb_str_pad example
Example#2665 - mb_strimwidth example
Example#2666 - mb_strtolower example
Example#2667 - mb_strtolower example with non-Latin UTF-8 text
Example#2668 - Esempio di mb_strtoupper
Example#2669 - Esempio di mb_strtoupper con testo non-Latin UTF-8
Example#2670 - mb_strwidth example
Example#2671 - mb_substitute_character example
Example#2672 - mb_substr_count example
Example#2673 - pspell_add_to_personal
Example#2674 - pspell_check Example
Example#2675 - pspell_add_to_personal Example
Example#2676 - pspell_config_create
Example#2677 - pspell_config_ignore
Example#2678 - pspell_config_mode Example
Example#2679 - pspell_config_personal
Example#2680 - pspell_config_repl
Example#2681 - pspell_config_runtogether
Example#2682 - pspell_new
Example#2683 - pspell_new_config
Example#2684 - pspell_new_personal
Example#2685 - pspell_add_to_personal
Example#2686 - pspell_store_replacement
Example#2687 - pspell_suggest example
Example#2688 - Basic recode_file example
Example#2689 - Basic recode_string example
Example#2690 - exif_imagetype example
Example#2691 - exif_read_data example
Example#2692 - exif_read_data with streams available as of PHP 7.2.0
Example#2693 - exif_tagname example
Example#2694 - exif_thumbnail example
Example#2695 - PNG creation with PHP
Example#2696 - Adding watermarks to images using alpha channels
Example#2697 - Using imagecopymerge to create a translucent watermark
Example#2698 - Using gd_info
Example#2699 - getimagesize and MIME types
Example#2700 - getimagesize example
Example#2701 - getimagesize (URL)
Example#2702 - getimagesize() returning IPTC
Example#2703 - getimagesizefromstring example
Example#2704 - image_type_to_extension example
Example#2705 - image_type_to_mime_type example
Example#2706 - image2wbmp example
Example#2707 - imageaffinematrixconcat example
Example#2708 - imageaffinematrixget example
Example#2709 - imagealphablending usage example
Example#2710 - A comparison of two lines, one with anti-aliasing switched on
Example#2711 - Drawing a circle with imagearc
Example#2712 - Saving a BMP file
Example#2713 - imagechar example
Example#2714 - imagecharup example
Example#2715 - imagecolorallocate example
Example#2716 - Example of using imagecolorallocatealpha
Example#2717 - Convert typical alpha values for use with imagecolorallocatealpha
Example#2718 - Access distinct RGB values
Example#2719 - Human-readable RGB values using imagecolorsforindex
Example#2720 - Search for a set of colors in an image
Example#2721 - Search for a set of colors in an image
Example#2722 - Example of using imagecolorclosesthwb
Example#2723 - Using imagecolordeallocate
Example#2724 - Get colors from the GD logo
Example#2725 - Get colors from the GD logo
Example#2726 - imagecolormatch example
Example#2727 - Using imagecoloresolve to get colors from an image
Example#2728 - Using imagecoloresolvealpha to get colors from an image
Example#2729 - imagecolorset example
Example#2730 - imagecolorsforindex example
Example#2731 - Getting total number of colors in an image using imagecolorstotal
Example#2732 - imagecolortransparent example
Example#2733 - Embossing the PHP.net logo
Example#2734 - Gaussian blur
Example#2735 - Cropping the PHP.net logo
Example#2736 - Merging two copies of the PHP.net logo with 75% transparency
Example#2737 - imagecopymergegray usage
Example#2738 - Simple example
Example#2739 - Resampling an image proportionally
Example#2740 - Resizing an image
Example#2741 - Creating a new GD image stream and outputting an image.
Example#2742 - Convert an BMP image to a PNG image using imagecreatefrombmp
Example#2743 - imagecreatefromgd example
Example#2744 - imagecreatefromgd2 example
Example#2745 - imagecreatefromgd2part example
Example#2746 - Example to handle an error during loading of a GIF
Example#2747 - Example to handle an error during loading of a JPEG
Example#2748 - Example to handle an error during loading of a PNG
Example#2749 - imagecreatefromstring example
Example#2750 - Example to handle an error during loading of a WBMP
Example#2751 - Convert an WebP image to a jpeg image using imagecreatefromwebp
Example#2752 - Convert an XBM image to a png image using imagecreatefromxbm
Example#2753 - Creating an image instance using imagecreatefromxpm
Example#2754 - Creating a new GD image stream and outputting an image.
Example#2755 - imagecrop example
Example#2756 - Proper handling of auto-cropping
Example#2757 - imagedashedline example
Example#2758 - Alternative to imagedashedline
Example#2759 - Using imagedestroy prior to PHP 8.0.0
Example#2760 - imageellipse example
Example#2761 - imagefill example
Example#2762 - Creating a 3D looking pie
Example#2763 - imagefilledellipse example
Example#2764 - imagefilledpolygon example
Example#2765 - imagefilledrectangle usage
Example#2766 - Filling an ellipse with a color
Example#2767 - imagefilter grayscale example
Example#2768 - imagefilter brightness example
Example#2769 - imagefilter colorize example
Example#2770 - imagefilter negate example
Example#2771 - imagefilter pixelate example
Example#2772 - imagefilter scatter example
Example#2773 - Flips an image vertically
Example#2774 - Flips the image horizontally
Example#2775 - Using imagefontheight on built-in fonts
Example#2776 - Using imagefontheight together with imageloadfont
Example#2777 - Using imagefontwidth on built-in fonts
Example#2778 - Using imagefontwidth together with imageloadfont
Example#2779 - imageftbbox example
Example#2780 - imagefttext example
Example#2781 - imagegammacorrect usage
Example#2782 - Outputting a GD image
Example#2783 - Saving a GD image
Example#2784 - Outputting a GD2 image
Example#2785 - Saving a GD2 image
Example#2786 - imagegetclip example
Example#2787 - Outputting an image using imagegif
Example#2788 - Converting a PNG image to GIF using imagegif
Example#2789 - imagegrabscreen example
Example#2790 - imagegrabwindow example
Example#2791 - Turn on interlacing using imageinterlace
Example#2792 - Simple detection of true color image instances using imageistruecolor
Example#2793 - Outputting a JPEG image to the browser
Example#2794 - Saving a JPEG image to a file
Example#2795 - Outputting the image at 75% quality to the browser
Example#2796 - imagelayereffect example
Example#2797 - Drawing a thick line
Example#2798 - imageloadfont usage example
Example#2799 - imageopenpolygon example
Example#2800 - imagepalettecopy example
Example#2801 - Converts any image object to true color
Example#2802 - imagepolygon example
Example#2803 - Simple imagerectangle example
Example#2804 - Setting and getting the resolution of an image
Example#2805 - Rotate an image 180 degrees
Example#2806 - Basic imagesavealpha Usage
Example#2807 - imagesetbrush example
Example#2808 - imagesetinterpolation example
Example#2809 - imagesetpixel example
Example#2810 - imagesetstyle example
Example#2811 - imagesetthickness example
Example#2812 - imagesettile example
Example#2813 - imagestring example
Example#2814 - imagestringup example
Example#2815 - Using imagesx
Example#2816 - Using imagesy
Example#2817 - Converting a true color image to a palette-based image
Example#2818 - imagettfbbox example
Example#2819 - imagettftext example
Example#2820 - Checking for PNG support
Example#2821 - Outputting a WBMP image
Example#2822 - Saving the WBMP image
Example#2823 - Outputting the image with a different foreground
Example#2824 - Saving an WebP file
Example#2825 - Saving an XBM file
Example#2826 - Saving an XBM file with a different foreground color
Example#2827 - Embedding IPTC data into a JPEG
Example#2828 - iptcparse() used together with getimagesize
Example#2829 - jpeg2wbmp example
Example#2830 - png2wbmp example
Example#2831 - Gmagick Example
Example#2832 - Gmagick::despeckleimage example
Example#2833 - Gmagick::setCompressionQuality
Example#2834 - Creating a thumbnail in Imagick
Example#2835 - Make a thumbnail of all JPG files in a directory
Example#2836 - Creating a reflection of an image
Example#2837 - Filling text with gradient
Example#2838 - Read in GIF image and resize all frames
Example#2839 - Create a PHP logo
Example#2840 - Using Imagick::adaptiveBlurImage:
Example#2841 - Using Imagick::adaptiveResizeImage
Example#2842 - A Imagick::adaptiveSharpenImage example
Example#2843 - Imagick::adaptiveThresholdImage
Example#2844 - Imagick::addNoiseImage
Example#2845 - Imagick::affineTransformImage
Example#2846 - Using Imagick::annotateImage:
Example#2847 - Imagick::appendImages example
Example#2848 - Imagick::autoLevelImage
Example#2849 - Imagick::blackThresholdImage
Example#2850 - Imagick::blueShiftImage
Example#2851 - Using Imagick::blurImage:
Example#2852 - Imagick::borderImage
Example#2853 - Imagick::brightnessContrastImage
Example#2854 - Imagick::charcoalImage
Example#2855 - Using Imagick::chopImage:
Example#2856 - Imagick object cloning in different versions of imagick
Example#2857 - Using Imagick::clutImage:
Example#2858 - Imagick::colorizeImage
Example#2859 - Imagick::colorMatrixImage
Example#2860 - Using Imagick::commentImage:
Example#2861 - Using Imagick::compareImageLayers
Example#2862 - Using Imagick::compareImages:
Example#2863 - Using Imagick::compositeImage:
Example#2864 - Imagick::contrastImage
Example#2865 - Imagick::convolveImage
Example#2866 - Imagick::cropImage
Example#2867 - Imagick::deskewImage
Example#2868 - Imagick::despeckleImage
Example#2869 - Using Imagick::distortImage:
Example#2870 - Imagick::edgeImage
Example#2871 - Imagick::embossImage
Example#2872 - Imagick::enhanceImage
Example#2873 - Imagick::equalizeImage
Example#2874 - Using Imagick::evaluateImage
Example#2875 - Using Imagick::exportImagePixels
Example#2876 - Imagick::filter
Example#2877 - Imagick::flipImage
Example#2878 - Imagick::floodfillPaintImage example
Example#2879 - Imagick::flopImage
Example#2880 - Imagick::forwardFourierTransformImage
Example#2881 - Imagick::frameImage
Example#2882 - Create a sinusoidal gradient
Example#2883 - Create a gradient from the polynomial (4x^2 - 4x + 1)
Example#2884 - Create a complex gradient from the polynomial (4x^2 - 4x^2 + 1) modulated by a sinusoidal gradient
Example#2885 - Imagick::fxImage
Example#2886 - Imagick::gammaImage
Example#2887 - Imagick::gaussianBlurImage
Example#2888 - Using Imagick::getImageGeometry
Example#2889 - Generates Imagick::getImageHistogram
Example#2890 - Using Imagick::getImageLength:
Example#2891 - Using Imagick::getImageProperties:
Example#2892 - Using Imagick::getImageProperty:
Example#2893 - Using Imagick::getIteratorIndex:
Example#2894 - Imagick::getPixelIterator
Example#2895 - Imagick::getPixelRegionIterator example
Example#2896 - Getting the size of a raw RGB image set at 200x400, after scaling to 400x800 (compared to width / height)
Example#2897 - Imagick::haldClutImage
Example#2898 - Imagick::identifyFormat
Example#2899 - Example Result Format
Example#2900 - Imagick::implodeImage
Example#2901 - Imagick::importImagePixels example
Example#2902 - Imagick::levelImage
Example#2903 - Imagick::linearStretchImage
Example#2904 - Imagick::magnifyImage
Example#2905 - Imagick::medianFilterImage
Example#2906 - Imagick::mergeImageLayers
Example#2907 - Imagick::modulateImage
Example#2908 - Convolve Imagick::morphology
Example#2909 - Correlate Imagick::morphology
Example#2910 - Erode Imagick::morphology
Example#2911 - Erode Intensity Imagick::morphology
Example#2912 - Dilate Imagick::morphology
Example#2913 - Dilate intensity Imagick::morphology
Example#2914 - Distance with Chebyshev kernel Imagick::morphology
Example#2915 - Distance with Manhattan kernel Imagick::morphology
Example#2916 - Distance with ocatagonal kernel Imagick::morphology
Example#2917 - Distance with Euclidean kernel Imagick::morphology
Example#2918 - Edge Imagick::morphology
Example#2919 - Open Imagick::morphology
Example#2920 - Open intensity Imagick::morphology
Example#2921 - Close Imagick::morphology
Example#2922 - Close Intensity Imagick::morphology
Example#2923 - Smooth Imagick::morphology
Example#2924 - Edge in Imagick::morphology
Example#2925 - Edge out Imagick::morphology
Example#2926 - The 'TopHat' method, or more specifically 'White Top Hat', returns the pixels that were removed by a Opening of the shape, that is the pixels that were removed to round off the points, and the connecting bridged between shapes. Imagick::morphology
Example#2927 - The 'BottomHat' method, also known as 'Black TopHat' is the pixels that a Closing of the shape adds to the image. That is the pixels that were used to fill in the 'holes', 'gaps', and 'bridges'. Imagick::morphology
Example#2928 - Hit and Miss Imagick::morphology
Example#2929 - Thinning Imagick::morphology
Example#2930 - Thicken Imagick::morphology
Example#2931 - Thick to generate a convex hull Imagick::morphology
Example#2932 - Iterative morphology Imagick::morphology
Example#2933 - Helper function to get an image silhouette Imagick::morphology
Example#2934 - Imagick::motionBlurImage
Example#2935 - Imagick::negateImage
Example#2936 - Using Imagick::newImage:
Example#2937 - Imagick::newPseudoImage
Example#2938 - Imagick::normalizeImage
Example#2939 - Imagick::oilPaintImage
Example#2940 - Using Imagick::optimizeImageLayers
Example#2941 - Imagick::orderedPosterizeImage
Example#2942 - Using Imagick::pingImageBlob
Example#2943 - Using Imagick::pingImageFile
Example#2944 - A Imagick::polaroidImage example
Example#2945 - Imagick::posterizeImage
Example#2946 - Imagick::quantizeImage
Example#2947 - Using Imagick::queryFontMetrics:
Example#2948 - Imagick::queryFonts
Example#2949 - Imagick::queryFormats
Example#2950 - Imagick::radialBlurImage
Example#2951 - Imagick::raiseImage
Example#2952 - Imagick::randomThresholdImage
Example#2953 - Imagick::readImageBlob
Example#2954 - Imagick::recolorImage
Example#2955 - Imagick::reduceNoiseImage
Example#2956 - Imagick::resampleImage
Example#2957 - Imagick::resizeImage
Example#2958 - Imagick::rollImage
Example#2959 - Imagick::rotateImage
Example#2960 - Imagick::rotationalBlurImage
Example#2961 - Using Imagick::roundCorners:
Example#2962 - Imagick::scaleImage
Example#2963 - Imagick::segmentImage
Example#2964 - Imagick::selectiveBlurImage
Example#2965 - Imagick::separateImageChannel
Example#2966 - Imagick::sepiaToneImage
Example#2967 - Imagick::setCompressionQuality
Example#2968 - A Imagick::setFont example
Example#2969 - A Imagick::setImage example
Example#2970 - Imagick::setImageArtifact
Example#2971 - Imagick::setImageBias
Example#2972 - Imagick::setImageClipMask
Example#2973 - Imagick::setImageCompressionQuality
Example#2974 - Modify animated Gif with Imagick::setImageDelay
Example#2975 - Basic Imagick::setImageIterations usage
Example#2976 - A Imagick::setImageOpacity example
Example#2977 - Imagick::setImageOrientation
Example#2978 - Using Imagick::setImageProperty:
Example#2979 - Imagick::setImageResolution
Example#2980 - Modify animated Gif with Imagick::setImageTicksPerSecond
Example#2981 - Using Imagick::setIteratorIndex:
Example#2982 - Attempt to reach '$extent' sizeImagick::setOption
Example#2983 - Imagick::setOption
Example#2984 - Imagick::setOption
Example#2985 - A Imagick::setPointSize example
Example#2986 - Imagick::setProgressMonitor
Example#2987 - Imagick::setSamplingFactors
Example#2988 - Imagick::shadeImage
Example#2989 - Imagick::shadowImage
Example#2990 - Imagick::sharpenImage
Example#2991 - Imagick::shaveImage
Example#2992 - Imagick::shearImage
Example#2993 - Create a gradient image using Imagick::sigmoidalContrastImage suitable for blending two images together smoothly, with the blending defined by $contrast and $the midpoint
Example#2994 - Imagick::sketchImage
Example#2995 - Imagick::smushImages
Example#2996 - Imagick::solarizeImage
Example#2997 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
Example#2998 - SPARSECOLORMETHOD_BILINEAR Imagick::sparseColorImage
Example#2999 - SPARSECOLORMETHOD_SPEPARDS Imagick::sparseColorImage
Example#3000 - SPARSECOLORMETHOD_VORONOI Imagick::sparseColorImage
Example#3001 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
Example#3002 - createGradientImage is used by other examples. Imagick::sparseColorImage
Example#3003 - Imagick::spliceImage
Example#3004 - Imagick::spreadImage
Example#3005 - Imagick::statisticImage
Example#3006 - Imagick::subImageMatch
Example#3007 - Imagick::swirlImage
Example#3008 - Imagick::textureImage
Example#3009 - Imagick::thresholdImage
Example#3010 - Imagick::thumbnailImage
Example#3011 - Imagick::tintImage
Example#3012 - Using Imagick::transformImage:
Example#3013 - Imagick::transformImageColorspace example
Example#3014 - Imagick::transparentPaintImage
Example#3015 - Imagick::transposeImage
Example#3016 - Imagick::transverseImage
Example#3017 - Using Imagick::trimImage:
Example#3018 - Imagick::uniqueImageColors
Example#3019 - Imagick::unsharpMaskImage
Example#3020 - Imagick::vignetteImage
Example#3021 - WaveImage can be quite slow Imagick::waveImage
Example#3022 - Imagick::whiteThresholdImage
Example#3023 - ImagickDraw::affine example
Example#3024 - ImagickDraw::arc example
Example#3025 - ImagickDraw::bezier example
Example#3026 - ImagickDraw::circle example
Example#3027 - ImagickDraw::composite example
Example#3028 - ImagickDraw::ellipse example
Example#3029 - ImagickDraw::line example
Example#3030 - ImagickDraw::matte example
Example#3031 - ImagickDraw::pathCurveToQuadraticBezierAbsolute example
Example#3032 - ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute example
Example#3033 - ImagickDraw::pathCurveToQuadraticBezierSmoothRelative example
Example#3034 - ImagickDraw::pathStart example
Example#3035 - ImagickDraw::point example
Example#3036 - ImagickDraw::polygon example
Example#3037 - ImagickDraw::polyline example
Example#3038 - ImagickDraw::popDefs example
Example#3039 - ImagickDraw::push example
Example#3040 - ImagickDraw::pushPattern example
Example#3041 - ImagickDraw::rectangle example
Example#3042 - ImagickDraw::rotate example
Example#3043 - ImagickDraw::roundRectangle example
Example#3044 - ImagickDraw::scale example
Example#3045 - ImagickDraw::setClipPath example
Example#3046 - ImagickDraw::setClipRule example
Example#3047 - ImagickDraw::setClipUnits example
Example#3048 - ImagickDraw::setFillAlpha example
Example#3049 - ImagickDraw::setFillColor
Example#3050 - ImagickDraw::setFillOpacity
Example#3051 - ImagickDraw::setFillRule example
Example#3052 - ImagickDraw::setFont example
Example#3053 - ImagickDraw::setFontFamily example
Example#3054 - ImagickDraw::setFontSize example
Example#3055 - ImagickDraw::setFontStretch example
Example#3056 - ImagickDraw::setFontStyle example
Example#3057 - ImagickDraw::setFontWeight example
Example#3058 - ImagickDraw::setGravity example
Example#3059 - ImagickDraw::setStrokeAlpha example
Example#3060 - ImagickDraw::setStrokeAntialias example
Example#3061 - ImagickDraw::setStrokeColor example
Example#3062 - ImagickDraw::setStrokeDashArray example
Example#3063 - ImagickDraw::setStrokeDashOffset example
Example#3064 - ImagickDraw::setStrokeLineCap example
Example#3065 - ImagickDraw::setStrokeLineJoin example
Example#3066 - ImagickDraw::setStrokeMiterLimit example
Example#3067 - ImagickDraw::setStrokeOpacity example
Example#3068 - ImagickDraw::setStrokeWidth example
Example#3069 - ImagickDraw::setTextAlignment example
Example#3070 - ImagickDraw::setTextAntialias example
Example#3071 - ImagickDraw::setTextDecoration example
Example#3072 - ImagickDraw::setTextUnderColor example
Example#3073 - ImagickDraw::setVectorGraphics example
Example#3074 - ImagickDraw::setViewBox example
Example#3075 - ImagickDraw::skewX example
Example#3076 - ImagickDraw::skewY example
Example#3077 - ImagickDraw::translate example
Example#3078 - ImagickKernel::addKernel
Example#3079 - ImagickKernel::addUnityKernel
Example#3080 - ImagickKernel::addUnityKernel
Example#3081 - ImagickKernel::fromBuiltin
Example#3082 - ImagickKernel::fromMatrix
Example#3083 - ImagickKernel::getMatrix
Example#3084 - ImagickKernel::scale
Example#3085 - ImagickKernel::separate
Example#3086 - ImagickPixel::construct
Example#3087 - Basic Imagick::getColor usage
Example#3088 - Basic Imagick::getColorAsString usage
Example#3089 - ImagickPixel getColorCount
Example#3090 - Basic Imagick::getColorValue usage
Example#3091 - ImagickPixel::getColorValueQuantum
Example#3092 - Basic Imagick::getHSL example
Example#3093 - ImagickPixel::isSimilar
Example#3094 - ImagickPixel::setColor
Example#3095 - Basic Imagick::setColorValue usage
Example#3096 - ImagickPixel::setColorValueQuantum
Example#3097 - Use ImagickPixel::setHSL to modify a color
Example#3098 - ImagickPixelIterator::clear
Example#3099 - ImagickPixelIterator::construct
Example#3100 - ImagickPixelIterator::getNextIteratorRow
Example#3101 - ImagickPixelIterator::resetIterator
Example#3102 - ImagickPixelIterator::setIteratorRow
Example#3103 - imap_append example
Example#3104 - imap_check example
Example#3105 - imap_createmailbox example
Example#3106 - imap_delete example
Example#3107 - imap_fetch_overview example
Example#3108 - imap_gc example
Example#3109 - imap_get_quota example
Example#3110 - imap_get_quota 4.3 or greater example
Example#3111 - imap_get_quotaroot example
Example#3112 - imap_getacl example
Example#3113 - imap_getmailboxes example
Example#3114 - imap_is_open example
Example#3115 - imap_list example
Example#3116 - imap_mail_compose example
Example#3117 - imap_mailboxmsginfo example
Example#3118 - imap_mime_header_decode example
Example#3119 - Different use of imap_open
Example#3120 - imap_open example
Example#3121 - imap_ping Example
Example#3122 - imap_reopen example
Example#3123 - imap_rfc822_parse_adrlist example
Example#3124 - imap_rfc822_write_address example
Example#3125 - imap_search example
Example#3126 - imap_set_quota example
Example#3127 - imap_setflag_full example
Example#3128 - imap_status example
Example#3129 - imap_thread Example
Example#3130 - imap_timeout example
Example#3131 - Basic imap_utf8 Usage
Example#3132 - Calcolare l'hash e iscrivere un utente
Example#3133 - Invio di mail.
Example#3134 - Inviare mail con header extra.
Example#3135 - Inviare mail con header extra come array
Example#3136 - Invio mail con un parametro di linea di comando aggiuntivo.
Example#3137 - Invio di email HTML
Example#3138 - mailparse_determine_best_xfer_encoding example
Example#3139 - mailparse_rfc822_parse_addresses example
Example#3140 - mailparse_stream_encode example
Example#3141 - mailparse_uudecode_all example
Example#3142 - Esempio di bcadd
Example#3143 - bcceil example
Example#3144 - esempio di bccomp
Example#3145 - Esempio di bcdiv
Example#3146 - bcdivmod example
Example#3147 - bcdivmod with decimals
Example#3148 - bcfloor example
Example#3149 - esempio di bcmod
Example#3150 - esempio di bcmul
Example#3151 - bcpow example
Example#3152 - bcround examples
Example#3153 - Example of using bcround with different precision values
Example#3154 - Example of using bcround with different mode values
Example#3155 - Example of using bcround with different mode values when specifying precision
Example#3156 - esempio di bcscale
Example#3157 - esempio di bcsqrt
Example#3158 - esempio di bcsub
Example#3159 - Funzioni fattoriali usando GMP
Example#3160 - Esempio di gmp_abs
Example#3161 - Esempio di gmp_add
Example#3162 - Esempio di gmp_and
Example#3163 - Esempio di gmp_clrbit
Example#3164 - Esempio di gmp_cmp
Example#3165 - Esempio di gmp_com
Example#3166 - Esempio di gmp_div_q
Example#3167 - Divisione di numeri GMP
Example#3168 - Esempio di gmp_div_r
Example#3169 - Esempio di gmp_divexact
Example#3170 - gmp_export example
Example#3171 - Esempio di gmp_fact
Example#3172 - Esempio di gmp_gcd
Example#3173 - Risoluzione di un'equazione diofantea lineare
Example#3174 - Esempio di gmp_hamdist
Example#3175 - gmp_import example
Example#3176 - Creazione di un numero GMP
Example#3177 - Esempio di gmp_intval
Example#3178 - Esempio di gmp_invert
Example#3179 - Esempio di gmp_jacobi
Example#3180 - Esempio di gmp_legendre
Example#3181 - Esempio di gmp_mod
Example#3182 - Esempio di gmp_mul
Example#3183 - Esempio di gmp_neg
Example#3184 - gmp_nextprime example
Example#3185 - Esempio di gmp_or
Example#3186 - Esempio di gmp_perfect_square
Example#3187 - Esempio di gmp_popcount
Example#3188 - Esempio di gmp_pow
Example#3189 - Esempio di gmp_powm
Example#3190 - Esempio di gmp_prob_prime
Example#3191 - Esempio di gmp_random
Example#3192 - gmp_random_bits example
Example#3193 - gmp_random_range example
Example#3194 - gmp_random_seed example
Example#3195 - Esempio di gmp_scan0
Example#3196 - Esempio di gmp_scan1
Example#3197 - Esempio di gmp_setbit - indice 0
Example#3198 - Esempio di gmp_setbit - indice 1
Example#3199 - Esempio di gmp_setbit - azzerare un bit
Example#3200 - Esempio di gmp_sign
Example#3201 - Esempio di gmp_sqrt
Example#3202 - Esempio di gmp_sqrtrem
Example#3203 - Conversione di un numero GMP in stringa
Example#3204 - Esempio di gmp_sub
Example#3205 - gmp_testbit example
Example#3206 - Esempio di gmp_xor
Example#3207 - Esempio di abs
Example#3208 - Esempio di uso di base_convert
Example#3209 - Esempio di bindec
Example#3210 - Esempio di ceil
Example#3211 - Esempio di cos
Example#3212 - Esempio per decbin
Example#3213 - Esempio per dechex
Example#3214 - Esempio per decoct
Example#3215 - Esempio per deg2rad
Example#3216 - Esempio per exp
Example#3217 - Using fdiv
Example#3218 - Esempio di floor
Example#3219 - Using fmod
Example#3220 - fpow example
Example#3221 - esempio di hexdec
Example#3222 - intdiv example
Example#3223 - intdiv Example With Invalid Divisor
Example#3224 - Esempio di max
Example#3225 - Esempio di uso di min
Example#3226 - Esempio per octdec
Example#3227 - Esempio di uso di pi
Example#3228 - Alcuni esempi di pow
Example#3229 - Esempio per rad2deg
Example#3230 - Esempi di round
Example#3231 - In che modo precision influenza un float
Example#3232 - Esempi di mode
Example#3233 - Esempi di mode con precision
Example#3234 - Esempio di uso di sin
Example#3235 - Esempio di uso di sqrt
Example#3236 - Esempio per tan
Example#3237 - Evaluating a FDF document
Example#3238 - Adding JavaScript code to a FDF
Example#3239 - Populating a PDF document
Example#3240 - Storing an uploaded file
Example#3241 - Detecting all fieldnames in a FDF
Example#3242 - Accessing the form data
Example#3243 - Accessing the form data
Example#3244 - Retrieving FDF as a string
Example#3245 - Passing FDF data to a second form
Example#3246 - gnupg clearsign example (procedural)
Example#3247 - gnupg clearsign example (OO)
Example#3248 - keylistiterator
Example#3249 - Procedural gnupg_adddecryptkey example
Example#3250 - OO gnupg_adddecryptkey example
Example#3251 - Procedural gnupg_addencryptkey example
Example#3252 - OO gnupg_addencryptkey example
Example#3253 - Procedural gnupg_addsignkey example
Example#3254 - OO gnupg_addsignkey example
Example#3255 - Procedural gnupg_cleardecryptkeys example
Example#3256 - OO gnupg_cleardecryptkeys example
Example#3257 - Procedural gnupg_clearencryptkeys example
Example#3258 - OO gnupg_clearencryptkeys example
Example#3259 - Procedural gnupg_clearsignkeys example
Example#3260 - OO gnupg_clearsignkeys example
Example#3261 - Procedural gnupg_decrypt example
Example#3262 - OO gnupg_decrypt example
Example#3263 - Procedural gnupg_decryptverify example
Example#3264 - OO gnupg_decryptverify example
Example#3265 - Procedural gnupg_deletekey example
Example#3266 - OO gnupg_deletekey example
Example#3267 - Procedural gnupg_encrypt example
Example#3268 - OO gnupg_encrypt example
Example#3269 - Procedural gnupg_encryptsign example
Example#3270 - OO gnupg_encryptsign example
Example#3271 - Procedural gnupg_export example
Example#3272 - OO gnupg_export example
Example#3273 - Procedural gnupg_getengineinfo example
Example#3274 - OO gnupg_getengineinfo example
Example#3275 - Procedural gnupg_geterror example
Example#3276 - OO gnupg_geterror example
Example#3277 - Procedural gnupg_geterrorinfo example
Example#3278 - OO gnupg_geterrorinfo example
Example#3279 - Procedural gnupg_getprotocol example
Example#3280 - OO gnupg_getprotocol example
Example#3281 - Procedural gnupg_gettrustlist example
Example#3282 - OO gnupg_gettrustlist example
Example#3283 - Procedural gnupg_import example
Example#3284 - OO gnupg_import example
Example#3285 - Procedural gnupg_init example with default setting
Example#3286 - Procedural gnupg_init example with overridden file name and home dir
Example#3287 - OO gnupg initializer example with default setting
Example#3288 - OO gnupg initializer example with overridden file name and home dir
Example#3289 - Procedural gnupg_keyinfo example
Example#3290 - OO gnupg_keyinfo example
Example#3291 - Procedural gnupg_listsignatures example
Example#3292 - OO gnupg_listsignatures example
Example#3293 - Procedural gnupg_setarmor example
Example#3294 - OO gnupg_setarmor example
Example#3295 - Procedural gnupg_seterrormode example
Example#3296 - OO gnupg_seterrormode example
Example#3297 - Procedural gnupg_setsignmode example
Example#3298 - OO gnupg_setsignmode example
Example#3299 - Procedural gnupg_sign example
Example#3300 - OO gnupg_sign example
Example#3301 - Procedural gnupg_verify example
Example#3302 - OO gnupg_verify example
Example#3303 - Creating and using a pattern
Example#3304 - Creating and using a template
Example#3305 - Hyphennate a text
Example#3306 - Drawing a rectangle
Example#3307 - Creating and using a spot color
Example#3308 - Rotation of the coordinate system
Example#3309 - Placing text at a given position
Example#3310 - Drawing a dashed line
Example#3311 - Translation of the coordinate system
Example#3312 - A rpmdbinfo example
Example#3313 - Searching for the package owning a file
Example#3314 - A rpmdefine example
Example#3315 - A rpmexpand example
Example#3316 - A rpmexpandnumeric example
Example#3317 - A rpminfo example
Example#3318 - example
Example#3319 - example
Example#3320 - example
Example#3321 - example
Example#3322 - example
Example#3323 - example
Example#3324 - example
Example#3325 - example
Example#3326 - example
Example#3327 - example
Example#3328 - example
Example#3329 - example
Example#3330 - example
Example#3331 - setColumn example
Example#3332 - setRow example
Example#3333 - Align style example
Example#3334 - Bold style example
Example#3335 - Italic style example
Example#3336 - Underline style example
Example#3337 - Incorrect requests
Example#3338 - Calling request from a request callback
Example#3339 - Calling request from a request callback
Example#3340 - Using eio with libevent
Example#3341 - Cancelling a request
Example#3342 - Calling eio_chmod
Example#3343 - Making a custom request
Example#3344 - Grouping requests
Example#3345 - Using eio with libevent extension
Example#3346 - Using eio with event extension
Example#3347 - eio_cancel example
Example#3348 - eio_custom example
Example#3349 - eio_event_loop example
Example#3350 - eio_fstat example
Example#3351 - Using eio with libevent
Example#3352 - eio_grp example
Example#3353 - Grouping requests
Example#3354 - eio_link example
Example#3355 - eio_lstat example
Example#3356 - eio_mkdir example
Example#3357 - eio_mknod example
Example#3358 - eio_nreqs example
Example#3359 - eio_open example
Example#3360 - eio_poll example
Example#3361 - eio_read example
Example#3362 - eio_readdir example
Example#3363 - eio_readlink example
Example#3364 - eio_realpath example
Example#3365 - eio_rename example
Example#3366 - eio_rmdir example
Example#3367 - eio_stat example
Example#3368 - eio_statvfs example
Example#3369 - eio_symlink example
Example#3370 - Simple timers
Example#3371 - Periodic timer. Tick each 10.5 seconds
Example#3372 - Periodic timer. Use reschedule callback
Example#3373 - Periodic timer. Tick every 10.5 seconds starting at now
Example#3374 - Wait until STDIN is readable
Example#3375 - Use some async I/O to access a socket
Example#3376 - Embedding one loop into another
Example#3377 - Embedding loop created with kqueue backend into the default loop
Example#3378 - Handle SIGTERM signal
Example#3379 - Monitor changes of /var/log/messages
Example#3380 - Monitor changes of /var/log/messages. Avoid missing updates by means of one second delay
Example#3381 - Process status changes
Example#3382 - Using reschedule callback
Example#3383 - Embedding loop created with kqueue backend into the default loop
Example#3384 - Embedding one loop into another
Example#3385 - Embedding loop created with kqueue backend into the default loop
Example#3386 - Embedding loop created with kqueue backend into the default loop
Example#3387 - Periodic timer. Use reschedule callback
Example#3388 - Periodic timer. Tick every 10.5 seconds starting at now
Example#3389 - Hourly watcher
Example#3390 - Handle SIGTERM signal
Example#3391 - Monitor changes of /var/log/messages
Example#3392 - Monitor changes of /var/log/messages
Example#3393 - Simple timers
Example#3394 - Monitor changes of /var/log/messages. Avoid missing updates by means of one second delay
Example#3395 - Register an I/O watcher for some UDP socket but do not keep the event loop from running just because of that watcher.
Example#3396 - Expect Usage Example
Example#3397 - Another Expect Usage Example
Example#3398 - expect_expectl example
Example#3399 - expect_popen example
Example#3400 - Process Control Example
Example#3401 - pcntl_fork example
Example#3402 - pcntl_get_last_error example
Example#3403 - pcntl_rfork example
Example#3404 - pcntl_signal example
Example#3405 - pcntl_signal_dispatch example
Example#3406 - pcntl_signal_get_handler example
Example#3407 - pcntl_sigprocmask example
Example#3408 - pcntl_sigwaitinfo example
Example#3409 - pcntl_strerror example
Example#3410 - posix_access example
Example#3411 - posix_eaccess example
Example#3412 - posix_fpathconf example
Example#3413 - Esempio di utilizzo di posix_getgrgid
Example#3414 - A posix_mknod example
Example#3415 - posix_pathconf example
Example#3416 - posix_sysconf example
Example#3417 - Un esempio di exec
Example#3418 - Using proc_nice to set the process priority to high
Example#3419 - A proc_open example
Example#3420 - proc_open quirk on Windows
Example#3421 - Un esempio di shell_exec
Example#3422 - Esempio di system
Example#3423 - Example showing Future as return value
Example#3424 - Example showing Future as synchronization point
Example#3425 - Fetch a chunk of the property table
Example#3426 - Counting the properties of an object
Example#3427 - Runtime inheritance
Example#3428 - Detect the state of the referenced object
Example#3429 - Detect the state of the referenced object
Example#3430 - Merging into the property table of a threaded object
Example#3431 - Notifications and Waiting
Example#3432 - Notifications and Waiting
Example#3433 - Popping the last item from the property table of a threaded object
Example#3434 - Shifting the first item from the property table of a threaded object
Example#3435 - Synchronizing
Example#3436 - Notifications and Waiting
Example#3437 - Return the identity of the Thread or Process that created the referenced Thread
Example#3438 - Return the currently executing Thread
Example#3439 - Return the identity of the currently executing Thread
Example#3440 - Return the identity of the referenced Thread
Example#3441 - Detect the state of the referenced Thread
Example#3442 - Tell if the referenced Thread was started
Example#3443 - Join with the referenced Thread
Example#3444 - Starting Threads
Example#3445 - A basic example of Worker::collect
Example#3446 - A basic example of Worker::getStacked
Example#3447 - Detect the state of a worker
Example#3448 - Shutdown the referenced worker
Example#3449 - Stacking a task for execution onto a worker
Example#3450 - Removing objects from the stack of Workers
Example#3451 - A basic example of Pool::collect
Example#3452 - Creating Pools
Example#3453 - Shutting down a pool
Example#3454 - Submitting Tasks
Example#3455 - Submitting tasks to a specific worker
Example#3456 - New immutability semantics of Threaded
Example#3457 - Volatile use-case
Example#3458 - Shared Memory Operations Overview
Example#3459 - Closing shared memory block
Example#3460 - Deleting shared memory block
Example#3461 - Create a new shared memory block
Example#3462 - Reading shared memory block
Example#3463 - Getting the size of the shared memory block
Example#3464 - Writing to shared memory block
Example#3465 - SyncMutex::__construct named mutex with lock timeout example
Example#3466 - SyncMutex::__construct unnamed mutex example
Example#3467 - SyncMutex::lock example
Example#3468 - SyncMutex::unlock example
Example#3469 - SyncSemaphore::__construct example
Example#3470 - SyncSemaphore::lock example
Example#3471 - SyncSemaphore::unlock example
Example#3472 - SyncEvent::__construct example
Example#3473 - SyncEvent::fire example
Example#3474 - SyncEvent::reset example
Example#3475 - SyncEvent::wait example
Example#3476 - SyncReaderWriter::__construct example
Example#3477 - SyncReaderWriter::readlock example
Example#3478 - SyncReaderWriter::readunlock example
Example#3479 - SyncReaderWriter::writelock example
Example#3480 - SyncReaderWriter::writeunlock example
Example#3481 - SyncSharedMemory::__construct example
Example#3482 - SyncSharedMemory::first example
Example#3483 - SyncSharedMemory::__construct example
Example#3484 - SyncSharedMemory::size example
Example#3485 - SyncSharedMemory::write example
Example#3486 - A geoip_asnum_by_name example
Example#3487 - A geoip_continent_code_by_name example
Example#3488 - A geoip_country_code_by_name example
Example#3489 - A geoip_country_code3_by_name example
Example#3490 - A geoip_country_name_by_name example
Example#3491 - A geoip_database_info example
Example#3492 - A geoip_db_avail example
Example#3493 - A geoip_db_filename example
Example#3494 - A geoip_db_get_all_info example
Example#3495 - A geoip_db_get_all_info example
Example#3496 - A geoip_domain_by_name example
Example#3497 - A geoip_id_by_name example
Example#3498 - A geoip_isp_by_name example
Example#3499 - A geoip_netspeedcell_by_name example
Example#3500 - A geoip_org_by_name example
Example#3501 - A geoip_record_by_name example
Example#3502 - A geoip_region_by_name example
Example#3503 - A geoip_region_name_by_code example using region code for US/Canada
Example#3504 - A geoip_region_name_by_code example using FIPS codes
Example#3505 - A geoip_setup_custom_directory example
Example#3506 - A geoip_time_zone_by_country_and_region example using region code for US/Canada
Example#3507 - A geoip_time_zone_by_country_and_region example using FIPS codes
Example#3508 - xor.data file
Example#3509 - Simple train
Example#3510 - Simple test
Example#3511 - fann_create_train_from_callback example
Example#3512 - fann_read_train_from_file example
Example#3513 - igbinary_serialize example
Example#3514 - JsonSerializable::jsonSerialize example returning an array
Example#3515 - JsonSerializable::jsonSerialize example returning an associative array
Example#3516 - JsonSerializable::jsonSerialize example returning an int
Example#3517 - JsonSerializable::jsonSerialize example returning a string
Example#3518 - json_decode examples
Example#3519 - Accessing invalid object properties
Example#3520 - common mistakes using json_decode
Example#3521 - depth errors
Example#3522 - json_decode of large integers
Example#3523 - A json_encode example
Example#3524 - A json_encode example showing some flags in use
Example#3525 - JSON_NUMERIC_CHECK option example
Example#3526 - Sequential versus non-sequential array example
Example#3527 - JSON_PRESERVE_ZERO_FRACTION option example
Example#3528 - json_last_error example
Example#3529 - json_last_error with json_encode
Example#3530 - json_last_error and JSON_THROW_ON_ERROR
Example#3531 - json_validate examples
Example#3532 - simdjson_decode examples
Example#3533 - Accessing invalid object properties
Example#3534 - common mistakes using simdjson_decode
Example#3535 - depth errors
Example#3536 - simdjson_decode of large integers
Example#3537 - simdjson_decode examples
Example#3538 - depth errors
Example#3539 - Lua::assignexample
Example#3540 - Lua::callexample
Example#3541 - Lua::evalexample
Example#3542 - Lua::registerCallbackexample
Example#3543 - LuaClosure::__invokeexample
Example#3544 - Execute some Lua code
Example#3545 - Calling a Lua function
Example#3546 - Profiling Lua code
Example#3547 - Loading code into Lua
Example#3548 - Manipulating the usage timer
Example#3549 - Registering PHP functions to call from Lua
Example#3550 - Calling a Lua function
Example#3551 - Calling a Lua function
Example#3552 - Esempio d'uso di constant
Example#3553 - Definire costanti
Example#3554 - Controllo Costanti
Example#3555 - Esempio di eval - semplice unione di testo
Example#3556 - Basic exit example
Example#3557 - exit example with a string
Example#3558 - Shutdown functions and destructors run regardless
Example#3559 - exit as a statement
Example#3560 - Listing all information about the users browser
Example#3561 - Esempio di __halt_compiler
Example#3562 - Esempio di highlight_string
Example#3563 - hrtime usage
Example#3564 - A ignore_user_abort example
Example#3565 - pack example
Example#3566 - php_strip_whitespace example
Example#3567 - Basic sapi_windows_generate_ctrl_event Usage
Example#3568 - Basic sapi_windows_set_ctrl_handler Usage
Example#3569 - sapi_windows_vt100_support default state
Example#3570 - sapi_windows_vt100_support changing state
Example#3571 - Example usage of VT100 support enabled
Example#3572 - Esempio sleep
Example#3573 - A sys_getloadavg example
Example#3574 - time_nanosleep example
Example#3575 - A time_sleep_until example
Example#3576 - uniqid Example
Example#3577 - unpack example
Example#3578 - unpack example with a repeater
Example#3579 - unpack example with unnamed keys
Example#3580 - Esempio di usleep
Example#3581 - Random Example
Example#3582 - mt_rand example
Example#3583 - rand example
Example#3584 - random_bytes example
Example#3585 - random_int example
Example#3586 - Random\Randomizer::__construct example
Example#3587 - Random\Randomizer::getBytes example
Example#3588 - Random\Randomizer::getBytesFromString example
Example#3589 - Generate a random code for multi-factor authentication
Example#3590 - Select from a string with a non-uniform distribution
Example#3591 - Random\Randomizer::getFloat example
Example#3592 - Random\Randomizer::getInt example
Example#3593 - Random\Randomizer::nextFloat example
Example#3594 - Incorrect scaling using an affine transformation
Example#3595 - Random\Randomizer::nextInt example
Example#3596 - Random\Randomizer::pickArrayKeys example
Example#3597 - Picking random values
Example#3598 - Random\Randomizer::__serialize example
Example#3599 - Random\Randomizer::shuffleArray example
Example#3600 - Random\Randomizer::shuffleBytes example
Example#3601 - Byte-wise shuffling breaks Unicode characters
Example#3602 - Random\Randomizer::__unserialize example
Example#3603 - Random\Engine::generate example
Example#3604 - Random\Engine\Mt19937::__construct example
Example#3605 - Random\Engine\Mt19937::__debugInfo example
Example#3606 - Random\Engine\Mt19937::__serialize example
Example#3607 - Random\Engine\Mt19937::__unserialize example
Example#3608 - Random\Engine\PcgOneseq128XslRr64::__construct example
Example#3609 - Deriving a seed from a string
Example#3610 - Random\Engine\PcgOneseq128XslRr64::__debugInfo example
Example#3611 - Random\Engine\PcgOneseq128XslRr64::jump example
Example#3612 - Randomizer methods may call the engine more than once
Example#3613 - Random\Engine\PcgOneseq128XslRr64::__serialize example
Example#3614 - Random\Engine\PcgOneseq128XslRr64::__unserialize example
Example#3615 - Random\Engine\Xoshiro256StarStar::__construct example
Example#3616 - Deriving a seed from a string
Example#3617 - Random\Engine\Xoshiro256StarStar::__debugInfo example
Example#3618 - Random\Engine\Xoshiro256StarStar::jump example
Example#3619 - Random\Engine\Xoshiro256StarStar::jumpLong example
Example#3620 - Random\Engine\Xoshiro256StarStar::__serialize example
Example#3621 - Random\Engine\Xoshiro256StarStar::__unserialize example
Example#3622 - Get and set base path
Example#3623 - Get and set logger
Example#3624 - Fast write log
Example#3625 - Fast count some type of log count value
Example#3626 - Acquisit some type of log list
Example#3627 - seaslog_get_author example
Example#3628 - seaslog_get_version example
Example#3629 - SeasLog::alert example
Example#3630 - SeasLog::analyzerCount example
Example#3631 - SeasLog::analyzerDetail example
Example#3632 - SeasLog::closeLoggerStream example
Example#3633 - SeasLog::__construct example
Example#3634 - SeasLog::critical example
Example#3635 - SeasLog::debug example
Example#3636 - SeasLog::__destruct example
Example#3637 - SeasLog::emergency example
Example#3638 - SeasLog::error example
Example#3639 - SeasLog::flushBuffer example
Example#3640 - SeasLog::getBasePath example
Example#3641 - SeasLog::getBuffer example
Example#3642 - SeasLog::getBufferEnabled example
Example#3643 - SeasLog::getDatetimeFormat example
Example#3644 - SeasLog::getLastLogger example
Example#3645 - SeasLog::getRequestID example
Example#3646 - SeasLog::getRequestVariable example
Example#3647 - SeasLog::info example
Example#3648 - SeasLog::log example
Example#3649 - SeasLog::notice example
Example#3650 - SeasLog::setBasePath example
Example#3651 - SeasLog::setDatetimeFormat example
Example#3652 - SeasLog::setLogger example
Example#3653 - SeasLog::setRequestID example
Example#3654 - SeasLog::setRequestVariable example
Example#3655 - SeasLog::warning example
Example#3656 - Basic usage
Example#3657 - SeekableIterator::seek example
Example#3658 - SplStack example
Example#3659 - SplQueue example
Example#3660 - Efficiently handling tasks with SplQueue
Example#3661 - SplFixedArray usage example
Example#3662 - SplFixedArray::__construct example
Example#3663 - SplFixedArray::count example
Example#3664 - SplFixedArray::fromArray example
Example#3665 - SplFixedArray::getSize example
Example#3666 - SplFixedArray::setSize example
Example#3667 - SplFixedArray::toArray example
Example#3668 - ArrayObject::append example
Example#3669 - ArrayObject::asort example
Example#3670 - ArrayObject::__construct example
Example#3671 - ArrayObject::count example
Example#3672 - ArrayObject::exchangeArray example
Example#3673 - ArrayObject::getArrayCopy example
Example#3674 - ArrayObject::getFlags example
Example#3675 - ArrayObject::getIterator example
Example#3676 - ArrayObject::getIteratorClass example
Example#3677 - ArrayObject::ksort example
Example#3678 - ArrayObject::natcasesort example
Example#3679 - ArrayObject::natsort example
Example#3680 - ArrayObject::offsetExists example
Example#3681 - ArrayObject::offsetGet example
Example#3682 - ArrayObject::offsetSet example
Example#3683 - ArrayObject::offsetUnset example
Example#3684 - ArrayObject::serialize example
Example#3685 - ArrayObject::setFlags example
Example#3686 - ArrayObject::setIteratorClass example
Example#3687 - ArrayObject::uasort example
Example#3688 - ArrayObject::uksort example
Example#3689 - SplObjectStorage as a set
Example#3690 - SplObjectStorage as a map
Example#3691 - SplObjectStorage::addAll example
Example#3692 - SplObjectStorage::attach example
Example#3693 - SplObjectStorage::contains example
Example#3694 - SplObjectStorage::count example
Example#3695 - SplObjectStorage::current example
Example#3696 - SplObjectStorage::detach example
Example#3697 - SplObjectStorage::getHash example
Example#3698 - SplObjectStorage::getInfo example
Example#3699 - SplObjectStorage::key example
Example#3700 - SplObjectStorage::next example
Example#3701 - SplObjectStorage::offsetExists example
Example#3702 - SplObjectStorage::offsetGet example
Example#3703 - SplObjectStorage::offsetSet example
Example#3704 - SplObjectStorage::offsetUnset example
Example#3705 - SplObjectStorage::removeAll example
Example#3706 - SplObjectStorage::removeAllExcept example
Example#3707 - SplObjectStorage::rewind example
Example#3708 - SplObjectStorage::seek example
Example#3709 - SplObjectStorage::serialize example
Example#3710 - SplObjectStorage::setInfo example
Example#3711 - SplObjectStorage::unserialize example
Example#3712 - SplObjectStorage::valid example
Example#3713 - AppendIterator::append example
Example#3714 - Iterating AppendIterator with foreach
Example#3715 - Iterating AppendIterator with the AppendIterator API
Example#3716 - AppendIterator.getIteratorIndex basic example
Example#3717 - AppendIterator::key basic example
Example#3718 - ArrayIterator::current example
Example#3719 - ArrayIterator::key example
Example#3720 - ArrayIterator::next example
Example#3721 - ArrayIterator::rewind example
Example#3722 - ArrayIterator::valid example
Example#3723 - CachingIterator::getCache example
Example#3724 - Available callback arguments
Example#3725 - Callback basic examples
Example#3726 - A DirectoryIterator::__construct example
Example#3727 - A DirectoryIterator::current example
Example#3728 - A DirectoryIterator::getBasename example
Example#3729 - DirectoryIterator::getExtension example
Example#3730 - A DirectoryIterator::getFilename example
Example#3731 - A DirectoryIterator::isDot example
Example#3732 - A DirectoryIterator::key example
Example#3733 - DirectoryIterator::next example
Example#3734 - DirectoryIterator::rewind example
Example#3735 - DirectoryIterator::seek example
Example#3736 - A DirectoryIterator::__toString example
Example#3737 - A DirectoryIterator::valid example
Example#3738 - FilesystemIterator::__construct example
Example#3739 - FilesystemIterator::current example
Example#3740 - FilesystemIterator::key example
Example#3741 - FilesystemIterator::next example
Example#3742 - FilesystemIterator::rewind example
Example#3743 - FilesystemIterator::key example
Example#3744 - FilterIterator::accept example
Example#3745 - GlobIterator example
Example#3746 - GlobIterator::count example
Example#3747 - InfiniteIterator::__construct example
Example#3748 - LimitIterator usage example
Example#3749 - LimitIterator::__construct example
Example#3750 - LimitIterator::getPosition example
Example#3751 - Iterating a MultipleIterator
Example#3752 - NoRewindIterator::__construct example
Example#3753 - NoRewindIterator::rewind example
Example#3754 - RecursiveArrayIterator::getChildren example
Example#3755 - RecursiveArrayIterator::hasChildren example
Example#3756 - Available callback arguments
Example#3757 - Recursive callback basic example
Example#3758 - RecursiveCallbackFilterIterator::hasChildren basic usage
Example#3759 - RecursiveDirectoryIterator example
Example#3760 - getSubPath example
Example#3761 - getSubPathname example
Example#3762 - Basic RecursiveFilterIterator example
Example#3763 - RecursiveFilterIterator example
Example#3764 - Iterating a RecursiveIteratorIterator
Example#3765 - RecursiveRegexIterator::__construct example
Example#3766 - RecursiveRegexIterator::getChildren example
Example#3767 - RecursiveRegexIterator::hasChildren example
Example#3768 - RegexIterator::accept example
Example#3769 - RegexIterator::__construct example
Example#3770 - RegexIterator::getFlags example
Example#3771 - RegexIterator::getMode example
Example#3772 - RegexIterator::getPregFlags example
Example#3773 - RegexIterator::setFlags example
Example#3774 - RegexIterator::setMode example
Example#3775 - RegexIterator::setPregFlags example
Example#3776 - SplFileInfo::__construct example
Example#3777 - SplFileInfo::getATime example
Example#3778 - SplFileInfo::getBasename example
Example#3779 - SplFileInfo::getCTime example
Example#3780 - SplFileInfo::getExtension example
Example#3781 - SplFileInfo::getFilename example
Example#3782 - SplFileInfo::getGroup example
Example#3783 - SplFileInfo::getLinkTarget example
Example#3784 - SplFileInfo::getMTime example
Example#3785 - SplFileInfo::getOwner example
Example#3786 - SplFileInfo::getPath example
Example#3787 - SplFileInfo::getPathInfo example
Example#3788 - SplFileInfo::getPathname example
Example#3789 - SplFileInfo::getPerms example
Example#3790 - SplFileInfo::getRealPath example
Example#3791 - SplFileInfo::getSize example
Example#3792 - SplFileInfo::getType example
Example#3793 - SplFileInfo::isDir example
Example#3794 - SplFileInfo::isExecutable example
Example#3795 - SplFileInfo::isFile example
Example#3796 - SplFileInfo::isLink example
Example#3797 - SplFileInfo::isReadable example
Example#3798 - SplFileInfo::isWritable example
Example#3799 - SplFileInfo::openFile example
Example#3800 - SplFileInfo::setFileClass example
Example#3801 - SplFileInfo::setFileClass example
Example#3802 - SplFileInfo::__toString example
Example#3803 - SplFileObject::__construct example
Example#3804 - SplFileObject::current example
Example#3805 - SplFileObject::eof example
Example#3806 - SplFileObject::fflush example
Example#3807 - SplFileObject::fgetc example
Example#3808 - SplFileObject::fgetcsv example
Example#3809 - SplFileObject::READ_CSV example
Example#3810 - SplFileObject::fgets example
Example#3811 - SplFileObject::fgetss example
Example#3812 - SplFileObject::flock example
Example#3813 - SplFileObject::fpassthru example
Example#3814 - SplFileObject::fputcsv example
Example#3815 - SplFileObject::fread example
Example#3816 - SplFileObject::fscanf example
Example#3817 - SplFileObject::fseek example
Example#3818 - SplFileObject::fstat example
Example#3819 - SplFileObject::ftell example
Example#3820 - SplFileObject::ftruncate example
Example#3821 - SplFileObject::fwrite example
Example#3822 - SplFileObject::getCsvControl example
Example#3823 - SplFileObject::getFlags example
Example#3824 - SplFileObject::getMaxLineLen example
Example#3825 - SplFileObject::key example
Example#3826 - SplFileObject::key example with SplFileObject::setMaxLineLen
Example#3827 - SplFileObject::next example
Example#3828 - SplFileObject::rewind example
Example#3829 - SplFileObject::seek example
Example#3830 - SplFileObject::setCsvControl example
Example#3831 - SplFileObject::setFlags example
Example#3832 - SplFileObject::setMaxLineLen example
Example#3833 - SplFileObject::valid example
Example#3834 - SplTempFileObject example
Example#3835 - class_implements example
Example#3836 - class_parents example
Example#3837 - class_uses example
Example#3838 - iterator_apply example
Example#3839 - iterator_count example
Example#3840 - iterator_count modifies position
Example#3841 - iterator_count in foreach loops
Example#3842 - iterator_to_array example
Example#3843 - spl_autoload_extensions example
Example#3844 - spl_autoload_register as a replacement for an __autoload function
Example#3845 - spl_autoload_register example where the class is not loaded
Example#3846 - The identifier will be provided without the leading backslash
Example#3847 - spl_classes example
Example#3848 - A spl_object_hash example
Example#3849 - A spl_object_id example
Example#3850 - Using file_get_contents to retrieve data from multiple sources
Example#3851 - Making a POST request to an https server
Example#3852 - Writing data to a compressed file
Example#3853 - A Stream for reading/writing global variables
Example#3854 - Listing files from tar archives
Example#3855 - stream_bucket_prepend examples
Example#3856 - Using stream_context_create
Example#3857 - Using stream_context_get_default
Example#3858 - stream_context_get_options example
Example#3859 - stream_context_get_params example
Example#3860 - stream_context_set_default example
Example#3861 - stream_context_set_options example
Example#3862 - A stream_copy_to_stream example
Example#3863 - Controlling where filters are applied
Example#3864 - Filter for capitalizing characters on foo-bar.txt stream
Example#3865 - Registering a generic filter class to match multiple filter names.
Example#3866 - Dynamically refiltering a stream
Example#3867 - stream_get_contents example
Example#3868 - Using stream_get_filters
Example#3869 - stream_get_meta_data example using fopen with http
Example#3870 - stream_get_meta_data example using stream_socket_client with https
Example#3871 - Using stream_get_transports
Example#3872 - stream_get_wrappers example
Example#3873 - Checking for the existence of a stream wrapper
Example#3874 - stream_is_local example
Example#3875 - stream_isatty example
Example#3876 - stream_notification_callback example
Example#3877 - Simple progressbar for commandline download client
Example#3878 - stream_resolve_include_path example
Example#3879 - stream_select Example
Example#3880 - stream_set_timeout example
Example#3881 - stream_set_write_buffer example
Example#3882 - stream_socket_client example
Example#3883 - Using UDP connection
Example#3884 - stream_socket_enable_crypto example
Example#3885 - A stream_socket_pair example
Example#3886 - stream_socket_recvfrom example
Example#3887 - stream_socket_sendto Example
Example#3888 - Using TCP server sockets
Example#3889 - Using UDP server sockets
Example#3890 - A stream_socket_shutdown example
Example#3891 - How to register a stream wrapper
Example#3892 - Basic usage
Example#3893 - Swoole\Event::add example
Example#3894 - Basic usage
Example#3895 - Swoole\Event::defer example
Example#3896 - Manual event loop control
Example#3897 - Checking event monitoring status
Example#3898 - Swoole\Event::wait example
Example#3899 - Swoole\Event::write example
Example#3900 - Basic Tidy usage
Example#3901 - tidy::getBody example
Example#3902 - tidy::cleanrepair example
Example#3903 - tidy::__construct example
Example#3904 - tidy::diagnose example
Example#3905 - tidy_get_error_buffer example
Example#3906 - tidy::getConfig example
Example#3907 - tidy_getopt example
Example#3908 - Print all options along with their documentation and default value
Example#3909 - tidy::getStatus example
Example#3910 - tidy::head example
Example#3911 - tidy::html example
Example#3912 - tidy::parseFile example
Example#3913 - tidy::parseString example
Example#3914 - tidy::repairFile example
Example#3915 - tidy::repairString example
Example#3916 - tidy::root example
Example#3917 - tidyNode::getNextSibling example
Example#3918 - tidyNode::getParent example
Example#3919 - tidyNode::getPreviousSibling example
Example#3920 - tidyNode::hasChildren example
Example#3921 - tidyNode::hasSiblings example
Example#3922 - Extract ASP code from a mixed HTML document
Example#3923 - Extract comments from a mixed HTML document
Example#3924 - Extract HTML code from a mixed HTML document
Example#3925 - Extract JSTE code from a mixed HTML document
Example#3926 - Extract PHP code from a mixed HTML document
Example#3927 - Extract text from a mixed HTML document
Example#3928 - ob_tidyhandler example
Example#3929 - tidy_access_count example
Example#3930 - tidy_config_count example
Example#3931 - tidy_error_count example
Example#3932 - tidy_get_output example
Example#3933 - tidy_warning_count example
Example#3934 - Strip comments with the tokenizer
Example#3935 - PhpToken::getTokenName example
Example#3936 - PhpToken::is example
Example#3937 - Usage with array
Example#3938 - PhpToken::isIgnorable example
Example#3939 - PhpToken::__toString example
Example#3940 - PhpToken::tokenize example
Example#3941 - Extending PhpToken
Example#3942 - token_get_all example
Example#3943 - token_get_all incorrect usage example
Example#3944 - token_get_all on a class using a reserved word example
Example#3945 - token_name example
Example#3946 - Uri\Rfc3986\Uri::equals basic example
Example#3947 - Uri\Rfc3986\Uri::getFragment basic example
Example#3948 - Uri\Rfc3986\Uri::getHost basic example
Example#3949 - Uri\Rfc3986\Uri::getPassword basic example
Example#3950 - Uri\Rfc3986\Uri::getPath basic example
Example#3951 - Uri\Rfc3986\Uri::getPort basic example
Example#3952 - Uri\Rfc3986\Uri::getQuery basic example
Example#3953 - Uri\Rfc3986\Uri::getRawFragment basic example
Example#3954 - Uri\Rfc3986\Uri::getRawHost basic example
Example#3955 - Uri\Rfc3986\Uri::getRawPassword basic example
Example#3956 - Uri\Rfc3986\Uri::getRawPath basic example
Example#3957 - Uri\Rfc3986\Uri::getRawQuery basic example
Example#3958 - Uri\Rfc3986\Uri::getRawScheme basic example
Example#3959 - Uri\Rfc3986\Uri::getRawUserInfo basic example
Example#3960 - Uri\Rfc3986\Uri::getRawUsername basic example
Example#3961 - Uri\Rfc3986\Uri::getScheme basic example
Example#3962 - Uri\Rfc3986\Uri::getUserInfo basic example
Example#3963 - Uri\Rfc3986\Uri::getUsername basic example
Example#3964 - Uri\Rfc3986\Uri::parse basic example
Example#3965 - Uri\Rfc3986\Uri::resolve basic example
Example#3966 - Uri\Rfc3986\Uri::toRawString basic example
Example#3967 - Uri\Rfc3986\Uri::toString basic example
Example#3968 - Uri\Rfc3986\Uri::withFragment basic example
Example#3969 - Uri\Rfc3986\Uri::withHost basic example
Example#3970 - Uri\Rfc3986\Uri::withPath basic example
Example#3971 - Uri\Rfc3986\Uri::withPort basic example
Example#3972 - Uri\Rfc3986\Uri::withQuery basic example
Example#3973 - Uri\Rfc3986\Uri::withScheme basic example
Example#3974 - Uri\Rfc3986\Uri::withUserInfo basic example
Example#3975 - Uri\WhatWg\Url::equals basic example
Example#3976 - Uri\WhatWg\Url::getAsciiHost basic example
Example#3977 - Uri\WhatWg\Url::getFragment basic example
Example#3978 - Uri\WhatWg\Url::getPassword basic example
Example#3979 - Uri\WhatWg\Url::getPath basic example
Example#3980 - Uri\WhatWg\Url::getPort basic example
Example#3981 - Uri\WhatWg\Url::getQuery basic example
Example#3982 - Uri\WhatWg\Url::getScheme basic example
Example#3983 - Uri\WhatWg\Url::getUnicodeHost basic example
Example#3984 - Uri\WhatWg\Url::getUsername basic example
Example#3985 - Uri\WhatWg\Url::parse basic example
Example#3986 - Uri\WhatWg\Url::resolve basic example
Example#3987 - Uri\WhatWg\Url::toAsciiString basic example
Example#3988 - Uri\WhatWg\Url::toUnicodeString basic example
Example#3989 - Uri\WhatWg\Url::withFragment basic example
Example#3990 - Uri\WhatWg\Url::withHost basic example
Example#3991 - Uri\WhatWg\Url::withPassword basic example
Example#3992 - Uri\WhatWg\Url::withPath basic example
Example#3993 - Uri\WhatWg\Url::withPort basic example
Example#3994 - Uri\WhatWg\Url::withQuery basic example
Example#3995 - Uri\WhatWg\Url::withScheme basic example
Example#3996 - Uri\WhatWg\Url::withUsername basic example
Example#3997 - base64_decode example
Example#3998 - base64_encode example
Example#3999 - get_headers example
Example#4000 - get_headers using HEAD example
Example#4001 - What get_meta_tags parses
Example#4002 - What get_meta_tags returns
Example#4003 - Simple usage of http_build_query
Example#4004 - http_build_query with numerically index elements.
Example#4005 - http_build_query with complex arrays
Example#4006 - Using http_build_query with an object
Example#4007 - Using http_build_query with objects containing __toString()
Example#4008 - A parse_url example
Example#4009 - A parse_url example with missing scheme
Example#4010 - rawurldecode example
Example#4011 - including a password in an FTP URL
Example#4012 - rawurlencode example 2
Example#4013 - urldecode example
Example#4014 - urlencode example
Example#4015 - urlencode and htmlentities example
Example#4016 - Basic Javascript execution
Example#4017 - Yaml Example
Example#4018 - Parse callback example
Example#4019 - Emit callback example
Example#4020 - yaml_emit example
Example#4021 - yaml_parse example
Example#4022 - A classic Application directory layout
Example#4023 - Entry
Example#4024 - Rewrite rule
Example#4025 - Application config
Example#4026 - Default controller
Example#4027 - Default view template
Example#4028 - Run the Application
Example#4029 - An PHP array example
Example#4030 - An ini file example
Example#4031 - A Bootstrap example
Example#4032 - Yaf_Application::bootstrapexample
Example#4033 - Yaf_Application::clearLastErrorexample
Example#4034 - A ini config file example
Example#4035 - Yaf_Application::__constructexample
Example#4036 - Yaf_Application::__constructexample
Example#4037 - Yaf_Application::environexample
Example#4038 - Yaf_Application::executeexample
Example#4039 - Yaf_Application::getConfigexample
Example#4040 - Yaf_Application::getDispatcherexample
Example#4041 - Yaf_Application::getLastErrorMsgexample
Example#4042 - Yaf_Application::getLastErrorNoexample
Example#4043 - Yaf_Application::getModulesexample
Example#4044 - Bootstrap example
Example#4045 - Yaf_Dispatcher::autoRender example
Example#4046 - Yaf_Dispatcher::catchException example
Example#4047 - Yaf_Dispatcher::registerPlugin example
Example#4048 - A custom View engine example
Example#4049 - Yaf_Dispatcher::setView example
Example#4050 - Yaf_Dispatcher::throwexception example
Example#4051 - Yaf_Dispatcher::throwexceptionexample
Example#4052 - Yaf_Config_Iniexample
Example#4053 - define action in a separate file
Example#4054 - Dummy_action.php
Example#4055 - Yaf_Controller_Abstract::forwardexample
Example#4056 - Yaf_Action_Abstract::executeexample
Example#4057 - Yaf_Action_Abstract::executeexample
Example#4058 - Yaf_View_Simple::assignexample
Example#4059 - Template example
Example#4060 - Yaf_View_Simple::assignRefexample
Example#4061 - Template example
Example#4062 - Yaf_View_Simple::clearexample
Example#4063 - Yaf_View_Simple::__construct example
Example#4064 - Yaf_View_Simple::__setexample
Example#4065 - Config example
Example#4066 - Register localnamespace
Example#4067 - Load class example
Example#4068 - Load namespace class example
Example#4069 - MVC class loading example
Example#4070 - MVC class distinctions
Example#4071 - MVC loading example
Example#4072 - Yaf_Loader::registerNamespaceexample
Example#4073 - Yaf_Loader::registerLocalNamespaceexample
Example#4074 - Yaf_Loader::registerNamespaceexample
Example#4075 - Plugin example
Example#4076 - Yaf_Plugin_Abstract::routerShutdownexample
Example#4077 - Yaf_Response_Abstract::appendBodyexample
Example#4078 - Yaf_Response_Abstract::getBodyexample
Example#4079 - Yaf_Response_Abstract::prependBodyexample
Example#4080 - Yaf_Response_Abstract::responseexample
Example#4081 - Yaf_Response_Abstract::setBodyexample
Example#4082 - Yaf_Route_Map::assembleexample
Example#4083 - Yaf_Route_Map example
Example#4084 - Yaf_Route_Map example
Example#4085 - Yaf_Route_Map example
Example#4086 - Yaf_Route_Regex::assembleexample
Example#4087 - Yaf_Route_Regex example
Example#4088 - Yaf_Route_Regex (as of 2.3.0) example
Example#4089 - Yaf_Route_Regex and named capture group (as of 2.3.0) example
Example#4090 - Yaf_Route_Regex example
Example#4091 - Yaf_Route_Rewrite::assembleexample
Example#4092 - Yaf_Route_Rewrite example
Example#4093 - Yaf_Route_Rewrite example
Example#4094 - Yaf_Route_Rewrite (as of 2.3.0) example
Example#4095 - Rewrite rule for Apache
Example#4096 - Rewrite rule for Apache
Example#4097 - Rewrite rule for Lighttpd
Example#4098 - Rewrite rule for Nginx
Example#4099 - Yaf_Route_Static(default route)example
Example#4100 - application.iniexample
Example#4101 - Yaf_Dispatcher::autoConfigexample
Example#4102 - Yaf_Dispatcher::autoRenderexample
Example#4103 - Register some routes in Bootstrap
Example#4104 - plugin Dummy.php (under application.directory/plugins)
Example#4105 - Yaf_Route_Simple::assembleexample
Example#4106 - Yaf_Route_Simple::routeexample
Example#4107 - Yaf_Route_Simple::routeexample
Example#4108 - Yaf_Route_Static::assembleexample
Example#4109 - Yaf_Route_Static::routeexample
Example#4110 - Yaf_Route_Supervar::assemble example
Example#4111 - Yaf_Route_Supervar example
Example#4112 - INI example
Example#4113 - INI sections example
Example#4114 - INIexample
Example#4115 - Taintexample
Example#4116 - Vector
Example#4117 - Map
Example#4118 - Ds\Collection::clear example
Example#4119 - Ds\Collection::copy example
Example#4120 - Ds\Collection::isEmpty example
Example#4121 - Ds\Collection::toArray example
Example#4122 - Ds\Hashable::hash example
Example#4123 - Ds\Sequence::allocate example
Example#4124 - Ds\Sequence::apply example
Example#4125 - Ds\Sequence::capacity example
Example#4126 - Ds\Sequence::contains example
Example#4127 - Ds\Sequence::filter example using callback function
Example#4128 - Ds\Sequence::filter example without a callback function
Example#4129 - Ds\Sequence::find example
Example#4130 - Ds\Sequence::first example
Example#4131 - Ds\Sequence::get example
Example#4132 - Ds\Sequence::get example using array syntax
Example#4133 - Ds\Sequence::insert example
Example#4134 - Ds\Sequence::join example using a separator string
Example#4135 - Ds\Sequence::join example without a separator string
Example#4136 - Ds\Sequence::last example
Example#4137 - Ds\Sequence::map example
Example#4138 - Ds\Sequence::merge example
Example#4139 - Ds\Sequence::pop example
Example#4140 - Ds\Sequence::push example
Example#4141 - Ds\Sequence::reduce with initial value example
Example#4142 - Ds\Sequence::reduce without an initial value example
Example#4143 - Ds\Sequence::remove example
Example#4144 - Ds\Sequence::reverse example
Example#4145 - Ds\Sequence::reversed example
Example#4146 - Ds\Sequence::rotate example
Example#4147 - Ds\Sequence::set example
Example#4148 - Ds\Sequence::set example using array syntax
Example#4149 - Ds\Sequence::shift example
Example#4150 - Ds\Sequence::slice example
Example#4151 - Ds\Sequence::sort example
Example#4152 - Ds\Sequence::sort example using a comparator
Example#4153 - Ds\Sequence::sorted example
Example#4154 - Ds\Sequence::sorted example using a comparator
Example#4155 - Ds\Sequence::sum integer example
Example#4156 - Ds\Sequence::sum float example
Example#4157 - Ds\Sequence::unshift example
Example#4158 - Ds\Vector::allocate example
Example#4159 - Ds\Vector::apply example
Example#4160 - Ds\Vector::capacity example
Example#4161 - Ds\Vector::clear example
Example#4162 - Ds\Vector::__construct example
Example#4163 - Ds\Vector::contains example
Example#4164 - Ds\Vector::copy example
Example#4165 - Ds\Vector::filter example using callback function
Example#4166 - Ds\Vector::filter example without a callback function
Example#4167 - Ds\Vector::find example
Example#4168 - Ds\Vector::first example
Example#4169 - Ds\Vector::get example
Example#4170 - Ds\Vector::get example using array syntax
Example#4171 - Ds\Vector::insert example
Example#4172 - Ds\Vector::isEmpty example
Example#4173 - Ds\Vector::join example using a separator string
Example#4174 - Ds\Vector::join example without a separator string
Example#4175 - Ds\Vector::last example
Example#4176 - Ds\Vector::map example
Example#4177 - Ds\Vector::merge example
Example#4178 - Ds\Vector::pop example
Example#4179 - Ds\Vector::push example
Example#4180 - Ds\Vector::reduce with initial value example
Example#4181 - Ds\Vector::reduce without an initial value example
Example#4182 - Ds\Vector::remove example
Example#4183 - Ds\Vector::reverse example
Example#4184 - Ds\Vector::reversed example
Example#4185 - Ds\Vector::rotate example
Example#4186 - Ds\Vector::set example
Example#4187 - Ds\Vector::set example using array syntax
Example#4188 - Ds\Vector::shift example
Example#4189 - Ds\Vector::slice example
Example#4190 - Ds\Vector::sort example
Example#4191 - Ds\Vector::sort example using a comparator
Example#4192 - Ds\Vector::sorted example
Example#4193 - Ds\Vector::sorted example using a comparator
Example#4194 - Ds\Vector::sum integer example
Example#4195 - Ds\Vector::sum float example
Example#4196 - Ds\Vector::toArray example
Example#4197 - Ds\Vector::unshift example
Example#4198 - Ds\Deque::allocate example
Example#4199 - Ds\Deque::apply example
Example#4200 - Ds\Deque::capacity example
Example#4201 - Ds\Deque::clear example
Example#4202 - Ds\Deque::__construct example
Example#4203 - Ds\Deque::contains example
Example#4204 - Ds\Deque::copy example
Example#4205 - Ds\Deque::filter example using callback function
Example#4206 - Ds\Deque::filter example without a callback function
Example#4207 - Ds\Deque::find example
Example#4208 - Ds\Deque::first example
Example#4209 - Ds\Deque::get example
Example#4210 - Ds\Deque::get example using array syntax
Example#4211 - Ds\Deque::insert example
Example#4212 - Ds\Deque::isEmpty example
Example#4213 - Ds\Deque::join example using a separator string
Example#4214 - Ds\Deque::join example without a separator string
Example#4215 - Ds\Deque::last example
Example#4216 - Ds\Deque::map example
Example#4217 - Ds\Deque::merge example
Example#4218 - Ds\Deque::pop example
Example#4219 - Ds\Deque::push example
Example#4220 - Ds\Deque::reduce with initial value example
Example#4221 - Ds\Deque::reduce without an initial value example
Example#4222 - Ds\Deque::remove example
Example#4223 - Ds\Deque::reverse example
Example#4224 - Ds\Deque::reversed example
Example#4225 - Ds\Deque::rotate example
Example#4226 - Ds\Deque::set example
Example#4227 - Ds\Deque::set example using array syntax
Example#4228 - Ds\Deque::shift example
Example#4229 - Ds\Deque::slice example
Example#4230 - Ds\Deque::sort example
Example#4231 - Ds\Deque::sort example using a comparator
Example#4232 - Ds\Deque::sorted example
Example#4233 - Ds\Deque::sorted example using a comparator
Example#4234 - Ds\Deque::sum integer example
Example#4235 - Ds\Deque::sum float example
Example#4236 - Ds\Deque::toArray example
Example#4237 - Ds\Deque::unshift example
Example#4238 - Ds\Map::allocate example
Example#4239 - Ds\Map::apply example
Example#4240 - Ds\Map::capacity example
Example#4241 - Ds\Map::clear example
Example#4242 - Ds\Map::__construct example
Example#4243 - Ds\Map::copy example
Example#4244 - Ds\Map::diff example
Example#4245 - Ds\Map::filter example using callback function
Example#4246 - Ds\Map::filter example without a callback function
Example#4247 - Ds\Map::first example
Example#4248 - Ds\Map::get example
Example#4249 - Ds\Map::get example using array syntax
Example#4250 - Ds\Map::hasKey example
Example#4251 - Ds\Map::hasValue example
Example#4252 - Ds\Map::intersect example
Example#4253 - Ds\Map::isEmpty example
Example#4254 - Ds\Map::keys example
Example#4255 - Ds\Map::ksort example
Example#4256 - Ds\Map::ksort example using a comparator
Example#4257 - Ds\Map::ksorted example
Example#4258 - Ds\Map::ksorted example using a comparator
Example#4259 - Ds\Map::last example
Example#4260 - Ds\Map::map example
Example#4261 - Ds\Map::merge example
Example#4262 - Ds\Map::pairs example
Example#4263 - Ds\Map::put example
Example#4264 - Ds\Map::put example using objects as keys
Example#4265 - Ds\Map::putAll example
Example#4266 - Ds\Map::reduce with initial value example
Example#4267 - Ds\Map::reduce without an initial value example
Example#4268 - Ds\Map::remove example
Example#4269 - Ds\Map::reverse example
Example#4270 - Ds\Map::reversed example
Example#4271 - Ds\Map::skip example
Example#4272 - Ds\Map::slice example
Example#4273 - Ds\Map::sort example
Example#4274 - Ds\Map::sort example using a comparator
Example#4275 - Ds\Map::sort example
Example#4276 - Ds\Map::sort example using a comparator
Example#4277 - Ds\Map::sum integer example
Example#4278 - Ds\Map::sum float example
Example#4279 - Ds\Map::toArray example
Example#4280 - Ds\Map::union example
Example#4281 - Ds\Map::values example
Example#4282 - Ds\Map::xor example
Example#4283 - Ds\Pair::clear example
Example#4284 - Ds\Pair::copy example
Example#4285 - Ds\Pair::isEmpty example
Example#4286 - Ds\Pair::toArray example
Example#4287 - Ds\Set::add example using integers
Example#4288 - Ds\Set::add example using objects
Example#4289 - Ds\Set::allocate example
Example#4290 - Ds\Set::capacity example
Example#4291 - Ds\Set::clear example
Example#4292 - Ds\Set::__construct example
Example#4293 - Ds\Set::contains example
Example#4294 - Ds\Set::copy example
Example#4295 - Ds\Set::diff example
Example#4296 - Ds\Set::filter example using callback function
Example#4297 - Ds\Set::filter example without a callback function
Example#4298 - Ds\Set::first example
Example#4299 - Ds\Set::get example
Example#4300 - Ds\Set::get example using array syntax
Example#4301 - Ds\Set::intersect example
Example#4302 - Ds\Set::isEmpty example
Example#4303 - Ds\Set::join example using a separator string
Example#4304 - Ds\Set::join example without a separator string
Example#4305 - Ds\Set::last example
Example#4306 - Ds\Set::map example
Example#4307 - Ds\Set::merge example
Example#4308 - Ds\Set::reduce with initial value example
Example#4309 - Ds\Set::reduce without an initial value example
Example#4310 - Ds\Set::remove example
Example#4311 - Ds\Set::reverse example
Example#4312 - Ds\Set::reversed example
Example#4313 - Ds\Set::slice example
Example#4314 - Ds\Set::sort example
Example#4315 - Ds\Set::sort example using a comparator
Example#4316 - Ds\Set::sorted example
Example#4317 - Ds\Set::sorted example using a comparator
Example#4318 - Ds\Set::sum integer example
Example#4319 - Ds\Set::sum float example
Example#4320 - Ds\Set::toArray example
Example#4321 - Ds\Set::union example
Example#4322 - Ds\Set::xor example
Example#4323 - Ds\Stack::clear example
Example#4324 - Ds\Stack::__construct example
Example#4325 - Ds\Stack::copy example
Example#4326 - Ds\Stack::isEmpty example
Example#4327 - Ds\Stack::peek example
Example#4328 - Ds\Stack::pop example
Example#4329 - Ds\Stack::push example
Example#4330 - Ds\Stack::toArray example
Example#4331 - Ds\Queue::allocate example
Example#4332 - Ds\Queue::capacity example
Example#4333 - Ds\Queue::clear example
Example#4334 - Ds\Queue::__construct example
Example#4335 - Ds\Queue::copy example
Example#4336 - Ds\Queue::isEmpty example
Example#4337 - Ds\Queue::peek example
Example#4338 - Ds\Queue::pop example
Example#4339 - Ds\Queue::push example
Example#4340 - Ds\Queue::toArray example
Example#4341 - Ds\PriorityQueue::allocate example
Example#4342 - Ds\PriorityQueue::capacity example
Example#4343 - Ds\PriorityQueue::clear example
Example#4344 - Ds\PriorityQueue::__construct example
Example#4345 - Ds\PriorityQueue::copy example
Example#4346 - Ds\PriorityQueue::isEmpty example
Example#4347 - Ds\PriorityQueue::peek example
Example#4348 - Ds\PriorityQueue::pop example
Example#4349 - Ds\PriorityQueue::push example
Example#4350 - Ds\PriorityQueue::toArray example
Example#4351 - var_representation Examples
Example#4352 - Escaping control characters
Example#4353 - Exporting stdClass
Example#4354 - Exporting classes
Example#4355 - Using __set_state()
Example#4356 - Utilizzo del modulo cURL di PHP per scaricare l'homepage di example.com
Example#4357 - Inizializza una sessione cURL e scarica una pagina
Example#4358 - Copying a cURL handle
Example#4359 - Esempio di curl_errno
Example#4360 - Esempio di curl_error
Example#4361 - curl_escape example
Example#4362 - Scarica una pagina web
Example#4363 - Esempio di curl_getinfo
Example#4364 - Inizializzare una nuova sessione cURL e scarica una pagina web
Example#4365 - Esempio di curl_multi_close
Example#4366 - Esempio di curl_multi_exec
Example#4367 - Un esempio di curl_multi_info_read
Example#4368 - Esempio di curl_multi_init
Example#4369 - curl_reset example
Example#4370 - Inizializzazione di una nuova sessione cURL e recuperare una pagina web
Example#4371 - Effettuare l'upload di un file (deprecato in PHP 5.5.0)
Example#4372 - Initializing a new cURL session and fetching a web page
Example#4373 - curl_share_setopt example
Example#4374 - curl_share_init example
Example#4375 - curl_share_init_persistent example
Example#4376 - curl_share_setopt example
Example#4377 - curl_errno example
Example#4378 - curl_escape example
Example#4379 - curl_upkeep example
Example#4380 - Esempio di curl_version
Example#4381 - CURLFile::__construct example
Example#4382 - CURLFile::__construct uploading multiple files example
Example#4383 - CURLStringFile::__construct example
Example#4384 - Simple HTTP client
Example#4385 - HTTP client using asynchronous DNS resolver
Example#4386 - Echo server
Example#4387 - SSL echo server
Example#4388 - Signal handler
Example#4389 - Use libevent's loop to process requests of `eio' extension
Example#4390 - Miscellaneous
Example#4391 - Simple HTTP server
Example#4392 - Simple HTTPS server
Example#4393 - OpenSSL connection
Example#4394 - EventHttpConnection::makeRequest example
Example#4395 - Connection listener based on a UNIX domain socket
Example#4396 - Simple SMTP server
Example#4397 - Handling SIGTERM signal
Example#4398 - Adding a custom signal
Example#4399 - Adding a timer
Example#4400 - EventBase::getFeatures example
Example#4401 - EventBase::getMethod example
Example#4402 - EventBuffer::search example
Example#4403 - EventBufferEvent::connect example
Example#4404 - Connect to UNIX domain socket which presumably is served by a server, read response from the server and output it to the console
Example#4405 - EventBufferEvent::connectHost example
Example#4406 - Buffer event's read callback
Example#4407 - EventBufferEvent::getOutput example
Example#4408 - EventBufferEvent::sslError example
Example#4409 - Simple SMTP server
Example#4410 - EventConfig::avoidMethod example
Example#4411 - EventConfig::__construct example
Example#4412 - EventConfig::requireFeatures example
Example#4413 - EventHttp::accept example
Example#4414 - EventHttp::addServerAlias example
Example#4415 - EventHttp::bind example
Example#4416 - Simple HTTP server
Example#4417 - EventHttp::setCallback example
Example#4418 - EventHttp::setDefaultCallback example
Example#4419 - EventHttpConnection::makeRequest example
Example#4420 - EventHttpConnection::setCloseCallback example
Example#4421 - EventHttpRequest::__construct example
Example#4422 - EventHttpRequest::sendError example
Example#4423 - EventListener::__construct example
Example#4424 - EventSslContext::__construct example
Example#4425 - FTP example
Example#4426 - ftp_alloc example
Example#4427 - ftp_cdup example
Example#4428 - esempio ftp_chdir
Example#4429 - ftp_chmod example
Example#4430 - esempio di funzione ftp_close
Example#4431 - Esempio di funzione ftp_connect
Example#4432 - Esempio di funzione ftp_delete
Example#4433 - Esempio di funzione ftp_exec
Example#4434 - Esempio di funzione ftp_fget
Example#4435 - Esempio di funzione ftp_fput
Example#4436 - Esempio di funzione ftp_get
Example#4437 - Esempio di funzione ftp_get_option
Example#4438 - Esempio di funzione ftp_login
Example#4439 - Esempio di funzione ftp_mdtm
Example#4440 - Esempio di funzione ftp_mkdir
Example#4441 - ftp_mlsd example
Example#4442 - Esempio di funzioneftp_nb_continue
Example#4443 - Esempio di funzione ftp_nb_fget
Example#4444 - Esempio di funzione ftp_nb_fput
Example#4445 - Esempio di funzione ftp_nb_get
Example#4446 - Ripresa di uno scaricamento con ftp_nb_get
Example#4447 - Ripresa di uno scaricamento dalla posizione 100 su un nuovo file con ftp_nb_get
Example#4448 - Esempio di funzione ftp_nb_put
Example#4449 - Ripresa di un trasferimento con ftp_nb_put
Example#4450 - Esempio di funzione ftp_nlist
Example#4451 - Esempio di funzione ftp_pasv
Example#4452 - Esempio di funzione ftp_put
Example#4453 - Esempio di funzione ftp_pwd
Example#4454 - Utilizzo di ftp_raw per collegarsi in modo manuale ad un server FTP.
Example#4455 - Esempio di funzione ftp_rawlist
Example#4456 - Esempio di funzione ftp_rename
Example#4457 - Esempio di funzione ftp_rmdir
Example#4458 - Esempio di funzione ftp_set_option
Example#4459 - Invio di un comando SITE ad un server ftp
Example#4460 - Esempio di funzione ftp_size
Example#4461 - Esempio di funzione ftp_ssl_connect
Example#4462 - Esempio di funzioneftp_systype
Example#4463 - Basic Gearman client and worker
Example#4464 - Basic Gearman client and worker, background
Example#4465 - Basic Gearman client and worker, submitting tasks
Example#4466 - Adding two job servers
Example#4467 - Add two job servers
Example#4468 - Basic submission of two tasks
Example#4469 - Basic submission of two tasks with passing application context
Example#4470 - Two tasks, one background and one not
Example#4471 - A high priority task along with two normal tasks
Example#4472 - A low priority task along with two normal tasks
Example#4473 - Monitor completion of multiple background tasks
Example#4474 - Simple job submission with immediate return
Example#4475 - Submitting a job and retrieving incremental status
Example#4476 - Submit and monitor a background job
Example#4477 - Simple job submission with immediate return
Example#4478 - Submitting a job and retrieving incremental status
Example#4479 - Get the status of a long running job
Example#4480 - Monitor the status of a long running background job
Example#4481 - Simple worker making use of extra application context data
Example#4482 - Add alternate Gearman servers
Example#4483 - Add two job servers
Example#4484 - GearmanWorker::setId example
Example#4485 - A simple worker with a 5 second timeout
Example#4486 - Running worker in non-blocking mode
Example#4487 - GearmanWorker::work example
Example#4488 - Testing support for paged result control
Example#4489 - LDAP search example
Example#4490 - Bind with policy information
Example#4491 - Modify description only if it's not empty
Example#4492 - Read some values before deletion
Example#4493 - Delete a reference
Example#4494 - Use pagination for a search
Example#4495 - Complete example with authenticated bind
Example#4496 - Using LDAP Bind
Example#4497 - Using LDAP Bind Anonymously
Example#4498 - Complete example of password check
Example#4499 - Example of connecting to LDAP server.
Example#4500 - Example of connecting securely to LDAP server.
Example#4501 - LDAP pagination
Example#4502 - LDAP pagination
Example#4503 - ldap_count_entries example
Example#4504 - Enumerating all LDAP error messages
Example#4505 - Generating and catching an error
Example#4506 - Searching for an email address
Example#4507 - Whoami extended operation
Example#4508 - PASSWD extended operation
Example#4509 - Show the list of attributes held for a particular directory entry
Example#4510 - Check protocol version
Example#4511 - List all values of the "mail" attribute for a directory entry
Example#4512 - Produce a list of all organizational units of an organization
Example#4513 - Add a telephone number to a contact
Example#4514 - Rename a user
Example#4515 - Add two e-mail addresses to a user
Example#4516 - Change a user's password
Example#4517 - Change a user's password (Active Directory)
Example#4518 - ldap_parse_result example
Example#4519 - LDAP search
Example#4520 - Set protocol version
Example#4521 - Set server controls
Example#4522 - LDAP sort
Example#4523 - memcache extension overview example
Example#4524 - Using memcache session handler
Example#4525 - Memcache::add example
Example#4526 - Memcache::addServer example
Example#4527 - Memcache::close example
Example#4528 - Memcache::connect example
Example#4529 - Memcache::decrement example
Example#4530 - Memcache::delete example
Example#4531 - Memcache::flush example
Example#4532 - Memcache::get example
Example#4533 - Memcache::getExtendedStats example
Example#4534 - Memcache::getServerStatus example
Example#4535 - Memcache::getVersion example
Example#4536 - Memcache::increment example
Example#4537 - Memcache::pconnect example
Example#4538 - Memcache::replace example
Example#4539 - Memcache::set example
Example#4540 - Memcache::set example
Example#4541 - Memcache::setCompressThreshold example
Example#4542 - Memcache::setServerParams example
Example#4543 - Result callback example
Example#4544 - Read-through callback example
Example#4545 - Memcached::addServer example
Example#4546 - Memcached::addServers example
Example#4547 - Memcached::append example
Example#4548 - Memcached::cas example
Example#4549 - Creating a Memcached object
Example#4550 - Memcached::decrement example
Example#4551 - Memcached::delete example
Example#4552 - Memcached::fetch example
Example#4553 - Memcached::getDelayed example
Example#4554 - Memcached::flush example
Example#4555 - Memcached::get example #1
Example#4556 - Memcached::get example #2
Example#4557 - Memcached::getDelayed example
Example#4558 - Memcached::getMulti example for Memcached v3
Example#4559 - Memcached::getMulti example for Memcached v1 and v2
Example#4560 - Memcached::GET_PRESERVE_ORDER example for Memcached v3
Example#4561 - Memcached::GET_PRESERVE_ORDER example for Memcached v1 and v2
Example#4562 - Retrieving Memcached options
Example#4563 - Memcached::getResultCode example
Example#4564 - Memcached::getResultMessage example
Example#4565 - Memcached::getServerByKey example
Example#4566 - Memcached::getServerList example
Example#4567 - Memcached::getStats example
Example#4568 - Memcached::getVersion example
Example#4569 - Memcached::increment example
Example#4570 - Memcached::prepend example
Example#4571 - Memcached::set example
Example#4572 - Memcached::setByKey example
Example#4573 - Memcached::setMulti example
Example#4574 - Setting a Memcached option
Example#4575 - Setting Memcached options
Example#4576 - mqseries_back example
Example#4577 - mqseries_begin example
Example#4578 - mqseries_close example
Example#4579 - mqseries_cmit example
Example#4580 - mqseries_conn example
Example#4581 - mqseries_connx example
Example#4582 - mqseries_connx example using SSL connection & OCSP Responder URL
Example#4583 - mqseries_disc example
Example#4584 - mqseries_get example
Example#4585 - mqseries_inq example
Example#4586 - mqseries_open example
Example#4587 - mqseries_put example
Example#4588 - mqseries_strerror example
Example#4589 - Using dns_get_record
Example#4590 - Using dns_get_record and DNS_ANY
Example#4591 - Esempio di fsockopen
Example#4592 - Uso di connessione UDP
Example#4593 - A simple gethostname example
Example#4594 - Esempio di uso di getservbyname
Example#4595 - Download dialog
Example#4596 - Caching directives
Example#4597 - Setting a cookie
Example#4598 - header_register_callback example
Example#4599 - Unsetting specific header.
Example#4600 - Unsetting all previously set headers.
Example#4601 - Example using headers_list
Example#4602 - Examples using headers_sent
Example#4603 - http_get_last_response_headers example
Example#4604 - Using http_response_code in a web server environment
Example#4605 - Using http_response_code in a CLI environment
Example#4606 - inet_ntop Example
Example#4607 - inet_pton Example
Example#4608 - Esempio di ip2long
Example#4609 - Visualizzazione di un indirizzo IP
Example#4610 - request_parse_body example
Example#4611 - request_parse_body example with customized options
Example#4612 - setcookie send example
Example#4613 - setcookie delete example
Example#4614 - setcookie and arrays
Example#4615 - Uso di syslog
Example#4616 - Procedural usage of rrd
Example#4617 - OO usage of rrd
Example#4618 - RRDGraph::setOptions example
Example#4619 - Set multiple color options
Example#4620 - RRDUpdater::update examples
Example#4621 - Fetch instrumented calls
Example#4622 - Fetch the list of functions scoutapm will instrument
Example#4623 - snmp_get_quick_print example
Example#4624 - Using snmp_get_valueretrieval
Example#4625 - Using snmp_read_mib
Example#4626 - Using snmp_set_enum_print
Example#4627 - Using snmprealwalk
Example#4628 - Using snmp_set_quick_print
Example#4629 - Using snmp_set_valueretrieval
Example#4630 - Using snmp2_get
Example#4631 - Using snmp2_getnext
Example#4632 - Using snmp2_real_walk
Example#4633 - Using snmp2_set
Example#4634 - Using snmp2_set for setting BITS SNMP object id
Example#4635 - snmp2_walk Example
Example#4636 - Using snmp3_get
Example#4637 - Using snmp3_getnext
Example#4638 - Using snmp3_real_walk
Example#4639 - Using snmp3_set
Example#4640 - Using snmp3_set for setting BITS SNMP object id
Example#4641 - snmp3_walk Example
Example#4642 - Using snmpget
Example#4643 - Using snmpgetnext
Example#4644 - Using snmprealwalk
Example#4645 - Using snmpset
Example#4646 - Using snmpset for setting BITS SNMP object id
Example#4647 - snmpwalk Example
Example#4648 - snmpwalkoid Example
Example#4649 - SNMP::close example
Example#4650 - Fetching the physical location of the host
Example#4651 - Single SNMP object
Example#4652 - Multiple SNMP objects
Example#4653 - SNMP::getErrno example
Example#4654 - SNMP::getError example
Example#4655 - Single SNMP object
Example#4656 - Multiple SNMP objects
Example#4657 - Set single SNMP object id
Example#4658 - Set multiple values using single SNMP::set call
Example#4659 - Using SNMP::set for setting BITS SNMP object id
Example#4660 - SNMP::setSecurity example
Example#4661 - SNMP::walk example
Example#4662 - suffixAsKey example
Example#4663 - Socket example: Simple TCP/IP server
Example#4664 - Socket example: Simple TCP/IP client
Example#4665 - Using socket_atmark to check if the socket is ready to read out-of-band data.
Example#4666 - Utilizzo di socket_bind per impostare un indirizzo sorgente
Example#4667 - Esempio di uso di socket_create_pair
Example#4668 - Esempio di IPC con socket_create_pair
Example#4669 - socket_import_stream example
Example#4670 - Esempio di socket_select
Example#4671 - Uso di null con socket_select
Example#4672 - Comprensione dei risultati di socket_select
Example#4673 - Esempio di socket_sendto
Example#4674 - socket_set_block example
Example#4675 - Esempio di uso di socket_set_nonblock
Example#4676 - Esempio di uso di socket_strerror
Example#4677 - Authenticating with a ssh agent
Example#4678 - Authentication using a public hostkey
Example#4679 - Retrieving a list of authentication methods
Example#4680 - Authenticating with a password
Example#4681 - Authentication using a public key
Example#4682 - Authentication using a public key
Example#4683 - ssh2_connect example
Example#4684 - Executing a command
Example#4685 - Opening a shell and retrieving the stderr stream associated with it
Example#4686 - Checking the fingerprint against a known value
Example#4687 - Determining what methods were negotiated
Example#4688 - Adding a publickey with ssh2_publickey_add
Example#4689 - Listing authorized keys with ssh2_publickey_list
Example#4690 - Downloading a file via SCP
Example#4691 - Uploading a file via SCP
Example#4692 - Opening a file via SFTP
Example#4693 - Changing the mode of a file on a remote server
Example#4694 - Stating a symbolic link via SFTP
Example#4695 - Creating a directory on a remote server
Example#4696 - Reading a symbolic link
Example#4697 - Resolving a pathname
Example#4698 - Renaming a file via sftp
Example#4699 - Removing a directory on a remote server
Example#4700 - Stating a file via SFTP
Example#4701 - Creating a symbolic link
Example#4702 - Deleting a file
Example#4703 - Requesting an interactive shell
Example#4704 - Opening a tunnel to an arbitrary host
Example#4705 - Stile orientato agli oggetti
Example#4706 - Stile procedurale
Example#4707 - stomp_connect_error example
Example#4708 - stomp_version example
Example#4709 - Stile orientato agli oggetti
Example#4710 - Stile procedurale
Example#4711 - Stile orientato agli oggetti
Example#4712 - Stile procedurale
Example#4713 - Stile orientato agli oggetti
Example#4714 - Stile procedurale
Example#4715 - Stile orientato agli oggetti
Example#4716 - Stile procedurale
Example#4717 - Stile orientato agli oggetti
Example#4718 - Stile procedurale
Example#4719 - Stile orientato agli oggetti
Example#4720 - Stile procedurale
Example#4721 - Stile orientato agli oggetti
Example#4722 - Stile procedurale
Example#4723 - Stile orientato agli oggetti
Example#4724 - Stile procedurale
Example#4725 - Stile orientato agli oggetti
Example#4726 - Stile procedurale
Example#4727 - Train from array
Example#4728 - Train from a file
Example#4729 - svn_add example
Example#4730 - Default authentication example
Example#4731 - svn_blame example
Example#4732 - Basic example
Example#4733 - Basic example
Example#4734 - Basic example
Example#4735 - Basic example
Example#4736 - Basic example
Example#4737 - Basic example
Example#4738 - Diffing two revisions of a repository path
Example#4739 - Portably diffing two local files
Example#4740 - svn_export example
Example#4741 - Basic example
Example#4742 - svn_log example
Example#4743 - svn_ls example
Example#4744 - Basic example
Example#4745 - Basic example
Example#4746 - Deny all connections from localhost
Example#4747 - Ban an URL
Example#4748 - Get statistic snapshot
Example#4749 - Read varnish shared memory log
Example#4750 - VarnishAdmin::__construct example
Example#4751 - Parallel searching using Yaz
Example#4752 - CCL configuration
Example#4753 - CCL Parsing
Example#4754 - Record Update
Example#4755 - Array for GRS-1 record
Example#4756 - Working with MARCXML
Example#4757 - PHP function that scans titles
Example#4758 - Query Examples
Example#4759 - Sort Criterias
Example#4760 - A ZMQContext example
Example#4761 - A ZMQContext example
Example#4762 - A ZMQContext example
Example#4763 - A ZMQSocket example
Example#4764 - A send/recv example
Example#4765 - A ZMQPoll example
Example#4766 - zookeeper_dispatch example #1
Example#4767 - zookeeper_dispatch example #2
Example#4768 - Zookeeper::addAuth example
Example#4769 - Zookeeper::create example
Example#4770 - Zookeeper::delete example
Example#4771 - Zookeeper::exists example
Example#4772 - Zookeeper::get example
Example#4773 - Zookeeper::get stat example
Example#4774 - Zookeeper::getAcl example
Example#4775 - Zookeeper::getChildren example
Example#4776 - Zookeeper::set example
Example#4777 - Zookeeper::setAcl example
Example#4778 - Zookeeper::setDebugLevel example
Example#4779 - ZookeeperConfig::add example
Example#4780 - ZookeeperConfig::get example
Example#4781 - ZookeeperConfig::remove example
Example#4782 - ZookeeperConfig::set example
Example#4783 - solr_get_version example
Example#4784 - Contents of the BootStrap file
Example#4785 - Adding a document to the index
Example#4786 - Merging one document into another document
Example#4787 - Searching for documents - SolrObject responses
Example#4788 - Searching for documents - SolrDocument responses
Example#4789 - Simple TermsComponent example - basic
Example#4790 - Simple TermsComponent example - using a prefix
Example#4791 - Simple TermsComponent example - specifying a minimum frequency
Example#4792 - Simple Facet Example
Example#4793 - Simple Facet Example - with optional field override for mincount
Example#4794 - Facet Date Example
Example#4795 - Connecting to SSL-Enabled Server
Example#4796 - Collapsing a SolrQuery
Example#4797 - Solr Real Time Get (RTG) example SolrClient::getById
Example#4798 - SolrInputDocument::addChildDocument example
Example#4799 - SolrInputDocument::addChildDocuments example
Example#4800 - SolrDocument::toArray example
Example#4801 - SolrObject::__construct example
Example#4802 - SolrObject::offsetUnset example
Example#4803 - SolrClient::addDocument example
Example#4804 - SolrClient::addDocument example 2
Example#4805 - SolrClient::addDocuments example
Example#4806 - SolrClient::__construct example
Example#4807 - SolrQuery::deleteByQuery example
Example#4808 - SolrClient::getById example
Example#4809 - SolrClient::getByIds example
Example#4810 - SolrClient::ping example
Example#4811 - SolrClient::query example
Example#4812 - SolrClient::request example
Example#4813 - SolrClient::setResponseWriter example
Example#4814 - SolrParams::setParam example
Example#4815 - SolrQuery::addFacetField example
Example#4816 - SolrQuery::addFacetField example
Example#4817 - SolrQuery::addFilterQuery example
Example#4818 - SolrQuery::addGroupSortField example
Example#4819 - SolrQuery::collapse example
Example#4820 - SolrQuery::setExpand example
Example#4821 - SolrDisMaxQuery::addBigramPhraseField example
Example#4822 - SolrDisMaxQuery::addBoostQuery example
Example#4823 - SolrDisMaxQuery::addPhraseField example
Example#4824 - SolrDisMaxQuery::addQueryField example
Example#4825 - SolrDisMaxQuery::addTrigramPhraseField example
Example#4826 - SolrDisMaxQuery::addUserField example
Example#4827 - SolrDisMaxQuery::__construct example
Example#4828 - SolrDisMaxQuery::removeBigramPhraseField example
Example#4829 - SolrDisMaxQuery::removeBoostQuery example
Example#4830 - SolrDisMaxQuery::removePhraseField example
Example#4831 - SolrDisMaxQuery::removeQueryField example
Example#4832 - SolrDisMaxQuery::removeTrigramPhraseField example
Example#4833 - SolrDisMaxQuery::removeUserField example
Example#4834 - SolrDisMaxQuery::setBigramPhraseFields example
Example#4835 - SolrDisMaxQuery::setBigramPhraseSlop example
Example#4836 - SolrDisMaxQuery::setBoostFunction example
Example#4837 - SolrDisMaxQuery::setBoostQuery example
Example#4838 - SolrDisMaxQuery::setMinimumMatch example
Example#4839 - SolrDisMaxQuery::setPhraseFields example
Example#4840 - SolrDisMaxQuery::setPhraseSlop example
Example#4841 - SolrDisMaxQuery::setQueryAlt example
Example#4842 - SolrDisMaxQuery::setQueryPhraseSlop example
Example#4843 - SolrDisMaxQuery::setTieBreaker example
Example#4844 - SolrDisMaxQuery::setTrigramPhraseFields example
Example#4845 - SolrDisMaxQuery::setTrigramPhraseSlop example
Example#4846 - SolrDisMaxQuery::setUserFields example
Example#4847 - SolrDisMaxQuery::useDisMaxQueryParser example
Example#4848 - SolrDisMaxQuery::useEDisMaxQueryParser example
Example#4849 - SolrCollapseFunction::__construct example
Example#4850 - SolrCollapseFunction::setHint example
Example#4851 - SolrCollapseFunction::setMax example
Example#4852 - disabilitazione dell'interprete PHP in una directory mediante .htaccess
Example#4853 - apache_get_modules example
Example#4854 - apache_get_version example
Example#4855 - apache_getenv example
Example#4856 - Esempio di apache_lookup_uri
Example#4857 - Esempio di apache_request_headers
Example#4858 - Esempio di apache_response_headers
Example#4859 - Impostazione di una variabile di environment di Apache utilizzando apache_setenv
Example#4860 - Esempio di getallheaders
Example#4861 - Registering a variable with $_SESSION.
Example#4862 - Unregistering a variable with $_SESSION.
Example#4863 - Counting the number of hits of a single user
Example#4864 - Example information
Example#4865 - session_cache_expire esempio
Example#4866 - session_cache_limiter esempi
Example#4867 - session_create_id example with session_regenerate_id
Example#4868 - Distruggere una sessione
Example#4869 - Distruggere una sessione con $_SESSION
Example#4870 - session_gc example for task managers like cron
Example#4871 - session_gc example for user accessible script
Example#4872 - session_name esempi
Example#4873 - A session_regenerate_id example
Example#4874 - Avoiding lost session by session_regenerate_id
Example#4875 - session_set_save_handler esempio
Example#4876 - Using SessionHandler to add encryption to internal PHP save handlers.
Example#4877 - Example using SessionHandlerInterface
Example#4878 - Tokenize comma separated integer list
Example#4879 - Tokenize assign statement
Example#4880 - Simple calculator
Example#4881 - Parse words out from a sentence
Example#4882 - Examples of valid patterns
Example#4883 - Examples of invalid patterns
Example#4884 - Example comparing preg_filter with preg_replace
Example#4885 - Esempio di preg_grep
Example#4886 - preg_last_error example
Example#4887 - preg_last_error_msg example
Example#4888 - Ricerca del testo "php"
Example#4889 - Cerca la parola "web"
Example#4890 - Estrapolazione del dominio da un URL
Example#4891 - Esempio di come ottenere tutti i numeri di telefono da un testo.
Example#4892 - Ricerca di tag HTML
Example#4893 - Esempio di preg_quote
Example#4894 - Esempio di come rendere in corsivo una qualsiasi parola di un testo
Example#4895 - Uso dei riferimenti all'indietro seguiti da numeri
Example#4896 - Uso di matrici indicizzate con preg_replace
Example#4897 - Esempi di sostituzione di valori
Example#4898 - Utilizzo del modificatore /e
Example#4899 - Esempio di conversione di codice HTML in testo
Example#4900 - preg_replace_callback e le funzioni anonime
Example#4901 - Esempio di preg_replace_callback
Example#4902 - preg_replace_callback usando una struttura ricorsiva per gestire codice BB incapsulato
Example#4903 - preg_replace_callback_array example
Example#4904 - Esempio di preg_split: Come ottenere le parti di un testo.
Example#4905 - Esempio di suddivisione di un testo in caratteri.
Example#4906 - Suddivisione di una stringa in testi riconosciuti con i relativi offset.
Example#4907 - Esempio di addcslashes
Example#4908 - Un esempio di addslashes
Example#4909 - Esempio di uso di chr
Example#4910 - Esempio di uso di chunk_split
Example#4911 - Esempio di uso di convert_uudecode
Example#4912 - Esempio di uso di convert_uuencode
Example#4913 - Esempio di count_chars
Example#4914 - Visualizzazione di un checksum crc32
Example#4915 - Esempio di uso di crypt
Example#4916 - Utilizzo di crypt con htpasswd
Example#4917 - Uso dei diversi tipi di criptazione
Example#4918 - Esempi della funzione echo
Example#4919 - Esempi di uso di explode
Example#4920 - Esempi del parametro limit
Example#4921 - fprintf: interi completati con zero
Example#4922 - fprintf: formattazione della moneta
Example#4923 - Esempio della tabella di decodifica
Example#4924 - hex2bin example
Example#4925 - Decodifica delle entità HTML
Example#4926 - Un esempio di htmlentities
Example#4927 - Esempio di uso di htmlspecialchars
Example#4928 - A htmlspecialchars_decode example
Example#4929 - Esempio di uso di implode
Example#4930 - lcfirst example
Example#4931 - Esempio di uso di levenshtein
Example#4932 - Esempio di uso di localeconv
Example#4933 - Esempio d'uso di ltrim
Example#4934 - Un esempio di md5
Example#4935 - Esempio di uso di md5_file
Example#4936 - Esempio di uso di money_format
Example#4937 - Esempio di uso di nl2br
Example#4938 - Esempio di uso di number_format
Example#4939 - Esempio di uso di ord
Example#4940 - Utilizzo di parse_str
Example#4941 - parse_str name mangling
Example#4942 - Esempio di uso di print
Example#4943 - quoted_printable_encode example
Example#4944 - Esempio di uso di rtrim
Example#4945 - Esempi di uso di setlocale
Example#4946 - Esempio di uso di setlocale perWindows
Example#4947 - Esempio di uso di sha1
Example#4948 - Esempio di uso di Soundex
Example#4949 - Scambio dei parametri
Example#4950 - Scambio dei parametri
Example#4951 - Scambio dei parametri
Example#4952 - Scambio di parametri
Example#4953 - Esempi di uso di printf
Example#4954 - printf: specifiche di stringa
Example#4955 - sprintf: interi completati con zeri
Example#4956 - sprintf: formattazione della moneta
Example#4957 - sprintf: notazione scientifica
Example#4958 - Esempio di uso di sscanf
Example#4959 - sscanf - utilizzo del parametro opzionale
Example#4960 - Using the empty string ''
Example#4961 - Showing case-sensitivity
Example#4962 - Basic str_decrement example
Example#4963 - str_decrement example with a carry
Example#4964 - Using the empty string ''
Example#4965 - Showing case-sensitivity
Example#4966 - str_getcsv example
Example#4967 - str_getcsv example with an empty string
Example#4968 - Basic str_increment example
Example#4969 - str_increment example with a carry
Example#4970 - Esempio di uso di str_ireplace
Example#4971 - Esempio di uso di str_pad
Example#4972 - Esempio di uso di str_repeat
Example#4973 - Esempi di uso di str_replace
Example#4974 - Esempio di uso di str_rot13
Example#4975 - Esempio di uso di str_shuffle
Example#4976 - Esempi di uso di str_split
Example#4977 - Esempi relativi a str_split
Example#4978 - Using the empty string ''
Example#4979 - Showing case-sensitivity
Example#4980 - Esempio di uso di str_word_count
Example#4981 - Esempio di uso di strcasecmp
Example#4982 - Esempio distrcmp
Example#4983 - Esempio di uso di strip_tags
Example#4984 - Esempi di uso di stripos
Example#4985 - Un esempio di stripslashes
Example#4986 - Utilizzo di stripslashes su un array
Example#4987 - Esempio di uso di stristr
Example#4988 - Verifica se una stringa esiste o meno
Example#4989 - Utilizzo di un dato non stringa da cercare
Example#4990 - Esempio di uso di strlen
Example#4991 - Esempio di uso di strpbrk
Example#4992 - Esempio di uso di strpos
Example#4993 - Esempio di uso di strrchr
Example#4994 - Invertire una stringa con strrev
Example#4995 - Un semplice esempio di strripos
Example#4996 - Esempio di uso di strstr
Example#4997 - Esempio di uso di strtok
Example#4998 - Vecchio comportamento di strtok
Example#4999 - Nuovo comportamento di strtok
Example#5000 - Esempio di uso di strtolower
Example#5001 - Esempio di uso di strtoupper
Example#5002 - Esempio di uso di strtr
Example#5003 - Esempio di uso di strtr con due parametri
Example#5004 - Esempi di base di substr
Example#5005 - Utilizzo di valori negativi di start
Example#5006 - Utilizzo di valori negativi per length
Example#5007 - Esempio di uso di substr_compare
Example#5008 - Esempio di uso di substr_count
Example#5009 - Esempio di uso di substr_replace
Example#5010 - Esempio di uso di trim
Example#5011 - Trimming array values with trim
Example#5012 - Esempio di uso di ucfirst
Example#5013 - Esempio di uso di ucwords
Example#5014 - Basic examples
Example#5015 - Basic example
Example#5016 - vfprintf: interi completati con zero
Example#5017 - Esempio di uso di wordwrap
Example#5018 - Esempio di uso di wordwrap
Example#5019 - Esempio di array
Example#5020 - Indice automatico con array
Example#5021 - Indice 1-based con array
Example#5022 - array_all example
Example#5023 - array_any example
Example#5024 - Esempio di array_change_key_case
Example#5025 - esempio di array_chunk
Example#5026 - Get the column of first names from a recordset
Example#5027 - Get the column of last names from a recordset, indexed by the "id" column
Example#5028 - Get the column of usernames from the public "username" property of an object
Example#5029 - Get the column of names from the private "name" property of an object using the magic methods __isset and __get
Example#5030 - Un semplice esempio per array_combine
Example#5031 - Esempio di array_count_values
Example#5032 - Esempio di array_diff
Example#5033 - Esempio di array_diff_assoc
Example#5034 - Esempio di array_diff_assoc
Example#5035 - array_diff_key example
Example#5036 - array_diff_uassoc example
Example#5037 - array_diff_ukey example
Example#5038 - esempio di array_fill
Example#5039 - array_fill_keys example
Example#5040 - Esempio di array_filter
Example#5041 - array_filter senza callback
Example#5042 - array_filter con mode
Example#5043 - array_find example
Example#5044 - array_find_key example
Example#5045 - Basic array_first Usage
Example#5046 - Esempio di array_flip
Example#5047 - Esempio di array_flip: collisione
Example#5048 - Esempio di array_intersect
Example#5049 - esempio di array_intersect_assoc
Example#5050 - array_intersect_key example
Example#5051 - array_intersect_uassoc example
Example#5052 - array_intersect_ukey example
Example#5053 - array_is_list example
Example#5054 - Esempio di array_key_exists
Example#5055 - array_key_exists vs isset
Example#5056 - Basic array_key_first Usage
Example#5057 - Esempio di array_keys
Example#5058 - Basic array_last Usage
Example#5059 - Esempio di array_map
Example#5060 - array_map usando una funzione lambda (a partire da PHP 5.3.0)
Example#5061 - array_map - usando più array
Example#5062 - Esecuzione di un'operazione zip di array
Example#5063 - callback null con solo array1
Example#5064 - array_map - con chiavi stringa
Example#5065 - Esempio di array_merge
Example#5066 - Esempio di array_merge
Example#5067 - esempio di array_merge
Example#5068 - Esempio di array_merge_recursive
Example#5069 - Sorting multiple arrays
Example#5070 - Ordinamento di array multidimensionali
Example#5071 - Ordinamento dei risultati di un database
Example#5072 - Ordinamento senza distinzione tra maiuscole e minuscole
Example#5073 - esempio di array_pad
Example#5074 - esempio di array_pop
Example#5075 - array_product examples
Example#5076 - esempio di array_push
Example#5077 - esempio di array_rand
Example#5078 - esempio di array_reduce
Example#5079 - array_replace example
Example#5080 - Example of how nested arrays are handled
Example#5081 - array_replace_recursive example
Example#5082 - array_replace_recursive and recursive behavior
Example#5083 - esempio di array_reverse
Example#5084 - esempio di array_search
Example#5085 - esempio di array_shift
Example#5086 - esempi di array_slice
Example#5087 - esempi di array_splice
Example#5088 - esempi di array_sum
Example#5089 - array_udiff example using stdClass Objects
Example#5090 - array_udiff example using DateTime Objects
Example#5091 - array_udiff_assoc example
Example#5092 - array_udiff_uassoc example
Example#5093 - array_uintersect example
Example#5094 - array_uintersect_assoc example
Example#5095 - array_uintersect_uassoc example
Example#5096 - esempio di array_unique
Example#5097 - array_unique e i tipi
Example#5098 - esempio di array_unshift
Example#5099 - esempio di array_values
Example#5100 - esempio di array_walk
Example#5101 - array_walk_recursive example
Example#5102 - esempio di arsort
Example#5103 - esempio di asort
Example#5104 - esempio di compact
Example#5105 - esempio di count
Example#5106 - esempio di count ricorsiva (PHP >= 4.2.0)
Example#5107 - Esempio di current e funzioni relative
Example#5108 - esempi dieach
Example#5109 - Attraversamento di un array con each
Example#5110 - Un semplice esempio di end
Example#5111 - Esempio di extract
Example#5112 - esempio di in_array
Example#5113 - esempio di in_array con strict
Example#5114 - in_array con un array come ago
Example#5115 - esempio di key
Example#5116 - Esempio di krsort
Example#5117 - esempio di ksort
Example#5118 - esempio di list
Example#5119 - Esempio di uso di list
Example#5120 - Utilizzare list annidate
Example#5121 - Utilizzo di list con gli indici
Example#5122 - list e ordine delle definizioni dell'indice
Example#5123 - esempio di natcasesort
Example#5124 - esempio di natsort
Example#5125 - Esempio di next e funzioni relative
Example#5126 - Esempio di prev e funzioni relative
Example#5127 - esempi di range
Example#5128 - esempio di reset
Example#5129 - esempio di rsort
Example#5130 - esempio di shuffle
Example#5131 - esempio di sort
Example#5132 - esempio di uksort
Example#5133 - esempio di usort
Example#5134 - esempio di usort con un array multidimensionale
Example#5135 - esempio di usort usando una funzione membro di un oggetto
Example#5136 - Class Definitions
Example#5137 - test_script.php
Example#5138 - class_alias example
Example#5139 - Esempio di class_exists
Example#5140 - Esempio del parametro autoload
Example#5141 - enum_exists example
Example#5142 - Using get_called_class
Example#5143 - Utilizzo di get_class
Example#5144 - Utilizzo di get_class nella superclasse
Example#5145 - Esempio di get_class_methods
Example#5146 - Esempio di get_class_vars
Example#5147 - get_class_vars e comportamento dell'ambito
Example#5148 - Esempio di get_declared_classes
Example#5149 - get_declared_interfaces example
Example#5150 - get_mangled_object_vars example
Example#5151 - Uso di get_object_vars
Example#5152 - Uso di get_parent_class
Example#5153 - interface_exists example
Example#5154 - Esempio di is_a
Example#5155 - Uso dell'operatore instanceof in PHP 5
Example#5156 - Esempio di is_subclass_of
Example#5157 - Esempio di is_subclass_of usando interfacce
Example#5158 - Esempio di method_exists
Example#5159 - Esempio di method_exists statico
Example#5160 - A property_exists example
Example#5161 - Un esempio di ctype_alnum (usando il locale di default)
Example#5162 - Un esempio di ctype_alpha (usando il locale di default)
Example#5163 - Un esempio di ctype_cntrl
Example#5164 - Un esempio di ctype_digit
Example#5165 - Un esempio di ctype_digit confrontando stringhe con interi
Example#5166 - Un esempio di ctype_graph
Example#5167 - Un esempio di ctype_lower (usando il locale di default)
Example#5168 - Un esempio di ctype_print
Example#5169 - Un esempio di ctype_punct
Example#5170 - Un esempio di ctype_space
Example#5171 - Un esempio di ctype_upper (usando il locale di default)
Example#5172 - Un esempio di ctype_xdigit
Example#5173 - Configuring the default filter to act like htmlspecialchars
Example#5174 - Example of using FILTER_CALLBACK to validate a login name
Example#5175 - Validating email addresses with filter_var
Example#5176 - Validating IP addresses with filter_var
Example#5177 - Passing options to filter_var
Example#5178 - Sanitizing and validating email addresses
Example#5179 - A filter_input example
Example#5180 - A filter_list example
Example#5181 - A filter_var example
Example#5182 - Example validating entries of an array
Example#5183 - Example of passing an array for options
Example#5184 - Providing flags either directly or via an array
Example#5185 - A filter_var_array example
Example#5186 - call_user_func example and references
Example#5187 - call_user_func example
Example#5188 - call_user_func using namespace name
Example#5189 - Using a class method with call_user_func
Example#5190 - Using lambda function with call_user_func
Example#5191 - call_user_func_array example
Example#5192 - call_user_func_array using namespace name
Example#5193 - Using lambda function
Example#5194 - Passing values by reference
Example#5195 - call_user_func_array using named arguments
Example#5196 - Creating a function dynamically, with create_function or anonymous functions
Example#5197 - Making a general processing function, with create_function or anonymous functions
Example#5198 - Using dynamic functions as callback functions
Example#5199 - forward_static_call example
Example#5200 - forward_static_call_array example
Example#5201 - func_get_arg example
Example#5202 - func_get_arg example of byref and byval arguments
Example#5203 - func_get_args example
Example#5204 - func_get_args example of byref and byval arguments
Example#5205 - func_num_args example
Example#5206 - function_exists example
Example#5207 - get_defined_functions example
Example#5208 - register_shutdown_function example
Example#5209 - register_tick_function example
Example#5210 - Quickhash Example
Example#5211 - Quickhash ArrayAccess Example
Example#5212 - Quickhash Iterator Example
Example#5213 - Quickhash String Values Example
Example#5214 - QuickHashIntSet::add example
Example#5215 - QuickHashIntSet::__construct example
Example#5216 - QuickHashIntSet::delete example
Example#5217 - QuickHashIntSet::exists example
Example#5218 - QuickHashIntSet::getSize example
Example#5219 - QuickHashIntSet::loadFromFile example
Example#5220 - QuickHashIntSet::loadFromString example
Example#5221 - QuickHashIntSet::saveToFile example
Example#5222 - QuickHashIntSet::saveToString example
Example#5223 - QuickHashIntHash::add example
Example#5224 - QuickHashIntHash::__construct example
Example#5225 - QuickHashIntHash::delete example
Example#5226 - QuickHashIntHash::exists example
Example#5227 - QuickHashIntHash::get example
Example#5228 - QuickHashIntHash::getSize example
Example#5229 - QuickHash IntHash file format
Example#5230 - QuickHash IntHash file format
Example#5231 - QuickHashIntHash::loadFromFile example
Example#5232 - QuickHashIntHash::loadFromString example
Example#5233 - QuickHashIntHash::saveToFile example
Example#5234 - QuickHashIntHash::saveToString example
Example#5235 - QuickHashIntHash::set example
Example#5236 - QuickHashIntHash::update example
Example#5237 - QuickHashStringIntHash::add example
Example#5238 - QuickHashStringIntHash::__construct example
Example#5239 - QuickHashStringIntHash::delete example
Example#5240 - QuickHashStringIntHash::get example
Example#5241 - QuickHashStringIntHash::getSize example
Example#5242 - QuickHash StringIntHash file format
Example#5243 - QuickHash IntHash file format
Example#5244 - QuickHashStringIntHash::loadFromFile example
Example#5245 - QuickHashStringIntHash::loadFromString example
Example#5246 - QuickHashStringIntHash::saveToFile example
Example#5247 - QuickHashStringIntHash::saveToString example
Example#5248 - QuickHashStringIntHash::set example
Example#5249 - QuickHashStringIntHash::update example
Example#5250 - QuickHashIntStringHash::add example
Example#5251 - QuickHashIntStringHash::__construct example
Example#5252 - QuickHashIntStringHash::delete example
Example#5253 - QuickHashIntStringHash::get example
Example#5254 - QuickHashIntStringHash::getSize example
Example#5255 - QuickHash IntString file format
Example#5256 - QuickHash IntString file format
Example#5257 - QuickHashIntStringHash::loadFromFile example
Example#5258 - QuickHashIntStringHash::loadFromString example
Example#5259 - QuickHashIntStringHash::saveToFile example
Example#5260 - QuickHashIntStringHash::saveToString example
Example#5261 - QuickHashIntStringHash::set example
Example#5262 - QuickHashIntStringHash::update example
Example#5263 - Reflection Example from Shell (a Terminal)
Example#5264 - Extending the built-in classes
Example#5265 - Reflection::getModifierNames example
Example#5266 - Basic usage ReflectionClass
Example#5267 - Basic usage of ReflectionClass::export
Example#5268 - Basic usage
Example#5269 - Filtering results by class name
Example#5270 - Filtering results by class name, with inheritance
Example#5271 - Usage of ReflectionClass::getConstant
Example#5272 - Basic usage of ReflectionClass::getConstructor
Example#5273 - ReflectionClass::getDefaultProperties example
Example#5274 - ReflectionClass::getDocComment example
Example#5275 - ReflectionClass::getEndLine example
Example#5276 - Basic usage of ReflectionClass::getExtension
Example#5277 - Basic usage of ReflectionClass::getExtensionName
Example#5278 - ReflectionClass::getInterfaceNames example
Example#5279 - ReflectionClass::getInterfaces example
Example#5280 - Basic usage of ReflectionClass::getMethod
Example#5281 - Basic usage of ReflectionClass::getMethods
Example#5282 - Filtering results from ReflectionClass::getMethods
Example#5283 - ReflectionClass::getName example
Example#5284 - ReflectionClass::getNamespaceName example
Example#5285 - ReflectionClass::getProperties filtering example
Example#5286 - Basic usage of ReflectionClass::getProperty
Example#5287 - Basic ReflectionClass::getReflectionConstants example
Example#5288 - ReflectionClass::getShortName example
Example#5289 - Basic usage of ReflectionClass::getStaticPropertyValue
Example#5290 - ReflectionClass::hasConstant example
Example#5291 - ReflectionClass::hasMethod example
Example#5292 - ReflectionClass::hasProperty example
Example#5293 - Basic usage
Example#5294 - ReflectionClass::inNamespace example
Example#5295 - ReflectionClass::isAbstract example
Example#5296 - ReflectionClass::isAnonymous example
Example#5297 - Basic usage of ReflectionClass::isCloneable
Example#5298 - ReflectionClass::isFinal example
Example#5299 - ReflectionClass::isInstance related examples
Example#5300 - ReflectionClass::isInstantiable example
Example#5301 - Basic usage of ReflectionClass::isInterface
Example#5302 - Basic usage of ReflectionClass::isInternal
Example#5303 - Basic ReflectionClass::isIterable Usage
Example#5304 - ReflectionClass::isReadOnly example
Example#5305 - Basic usage
Example#5306 - Marking an uninitialized lazy object as initialized
Example#5307 - Marking an initialized object as initialized
Example#5308 - Basic usage of ReflectionClass::newInstanceArgs
Example#5309 - Basic usage
Example#5310 - Basic usage
Example#5311 - ReflectionClass::__toString example
Example#5312 - Basic usage
Example#5313 - Filtering results by class name
Example#5314 - Filtering results by class name, with inheritance
Example#5315 - ReflectionClassConstant::isDeprecated example
Example#5316 - ReflectionClassConstant::isEnumCase example
Example#5317 - Basic usage
Example#5318 - Basic usage of ReflectionConstant::getExtension
Example#5319 - Basic usage of ReflectionConstant::getExtensionName
Example#5320 - ReflectionConstant::getName example
Example#5321 - ReflectionConstant::getNamespaceName example
Example#5322 - ReflectionConstant::getShortName example
Example#5323 - ReflectionProperty::getValue example
Example#5324 - ReflectionConstant::isDeprecated example
Example#5325 - ReflectionEnum::getBackingType example
Example#5326 - ReflectionEnum::getCase example
Example#5327 - ReflectionEnum::getCases example
Example#5328 - ReflectionEnum::hasCase example
Example#5329 - ReflectionEnum::isBacked example
Example#5330 - ReflectionEnum::getValue example
Example#5331 - ReflectionEnum::getBackingValue example
Example#5332 - ReflectionExtension example
Example#5333 - ReflectionExtension::getClasses example
Example#5334 - ReflectionExtension::getClassNames example
Example#5335 - ReflectionExtension::getConstants example
Example#5336 - ReflectionExtension::getDependencies example
Example#5337 - ReflectionExtension::getFunctions example
Example#5338 - ReflectionExtension::getINIEntries example
Example#5339 - ReflectionExtension::getName example
Example#5340 - ReflectionExtension::getVersion example
Example#5341 - ReflectionExtension::info example
Example#5342 - ReflectionFunction::__construct example
Example#5343 - ReflectionFunction::invoke example
Example#5344 - ReflectionFunction::invokeArgs example
Example#5345 - ReflectionFunction::invokeArgs with references example
Example#5346 - ReflectionFunction::isAnonymous example
Example#5347 - ReflectionFunction::__toString example
Example#5348 - Basic usage with a class method
Example#5349 - Basic usage with a function
Example#5350 - Filtering results by class name
Example#5351 - Filtering results by class name, with inheritance
Example#5352 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5353 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5354 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5355 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5356 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5357 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5358 - ReflectionFunctionAbstract::getClosureUsedVariables example
Example#5359 - ReflectionFunctionAbstract::getReturnType example
Example#5360 - Usage on built-in functions
Example#5361 - ReflectionFunctionAbstract::getTentativeReturnType example
Example#5362 - ReflectionFunctionAbstract::hasReturnType example
Example#5363 - Usage on built-in functions
Example#5364 - ReflectionFunctionAbstract::hasTentativeReturnType example
Example#5365 - ReflectionFunctionAbstract::isClosure example
Example#5366 - ReflectionFunctionAbstract::isDeprecated example
Example#5367 - ReflectionMethod::__construct example
Example#5368 - ReflectionMethod::createFromMethodName example
Example#5369 - ReflectionMethod::getDeclaringClass example
Example#5370 - ReflectionMethod::getModifiers example
Example#5371 - ReflectionMethod::getPrototype example
Example#5372 - ReflectionMethod::hasPrototype example
Example#5373 - ReflectionMethod::invoke example
Example#5374 - ReflectionMethod::invokeArgs example
Example#5375 - Simple Class definition
Example#5376 - ReflectionMethod::__toString example
Example#5377 - ReflectionNamedType::isBuiltin example
Example#5378 - Using the ReflectionParameter class
Example#5379 - Basic usage
Example#5380 - Filtering results by class name
Example#5381 - Filtering results by class name, with inheritance
Example#5382 - Using the ReflectionParameter class
Example#5383 - Getting the class that declared the method
Example#5384 - Getting default values of function parameters
Example#5385 - Getting default values' constant names of function parameters
Example#5386 - ReflectionParameter::getType Usage as of PHP 7.1.0
Example#5387 - ReflectionParameter::getType Usage before PHP 7.1.0
Example#5388 - ReflectionParameter::getType Usage in PHP 8.0.0 and later
Example#5389 - ReflectionParameter::hasType example
Example#5390 - PHP 8.0.0 equivalent
Example#5391 - PHP 8.0.0 equivalent
Example#5392 - ReflectionParameter::__toString example
Example#5393 - ReflectionProperty::__construct example
Example#5394 - Getting value from private and protected properties using ReflectionProperty class
Example#5395 - Basic usage
Example#5396 - Filtering results by class name
Example#5397 - Filtering results by class name, with inheritance
Example#5398 - ReflectionProperty::getDefaultValue example
Example#5399 - ReflectionProperty::getDocComment example
Example#5400 - Multiple property declarations
Example#5401 - ReflectionProperty::getHook example
Example#5402 - ReflectionProperty::getHooks example
Example#5403 - ReflectionProperty::getRawValue example
Example#5404 - ReflectionProperty::getSettableType example
Example#5405 - ReflectionProperty::getType example
Example#5406 - ReflectionProperty::getValue example
Example#5407 - ReflectionProperty::hasDefaultValue example
Example#5408 - ReflectionProperty::hasHook example
Example#5409 - ReflectionProperty::hasHooks example
Example#5410 - ReflectionProperty::hasType example
Example#5411 - ReflectionProperty::isDefault example
Example#5412 - ReflectionProperty::isDynamic example
Example#5413 - ReflectionProperty::isFinal example
Example#5414 - ReflectionProperty::isInitialized example
Example#5415 - ReflectionProperty::isPromoted example
Example#5416 - ReflectionProperty::isVirtual example
Example#5417 - Simple Class definition
Example#5418 - ReflectionProperty::setRawValue example
Example#5419 - ReflectionProperty::setValue example
Example#5420 - ReflectionType::allowsNull example
Example#5421 - ReflectionType::__toString example
Example#5422 - ReflectionUnionType::getTypes example
Example#5423 - ReflectionGenerator::__construct example
Example#5424 - ReflectionGenerator::getExecutingFile example
Example#5425 - ReflectionGenerator::getExecutingGenerator example
Example#5426 - ReflectionGenerator::getExecutingLine example
Example#5427 - ReflectionGenerator::getFunction example
Example#5428 - ReflectionGenerator::getThis example
Example#5429 - ReflectionGenerator::getTrace example
Example#5430 - ReflectionGenerator::isClosed example
Example#5431 - ReflectionIntersectionType::getTypes example
Example#5432 - Basic ReflectionReference::getId usage
Example#5433 - boolval examples
Example#5434 - debug_zval_dump example
Example#5435 - Semplici confronti empty / isset.
Example#5436 - empty on String Offsets
Example#5437 - Esempio di uso di floatval
Example#5438 - Esempio di floatval con caratteri più a sinistra non numerici
Example#5439 - get_debug_type example
Example#5440 - Esempio di uso di get_defined_vars
Example#5441 - get_resource_id produces the same result as an int cast
Example#5442 - Esempio di get_resource_type
Example#5443 - Esempio di gettype
Example#5444 - Esempi di uso di intval
Example#5445 - Verifica se una variabile è un array
Example#5446 - Esempi di is_bool
Example#5447 - Esempio di is_callable
Example#5448 - is_countable examples
Example#5449 - Esempio di is_float
Example#5450 - Esempio di is_int
Example#5451 - is_iterable examples
Example#5452 - Esempio di is_null
Example#5453 - Esempi di is_numeric
Example#5454 - Esempio di is_object
Example#5455 - Esempio di utilizzo di is_resource
Example#5456 - Esempio di uso di is_scalar
Example#5457 - Esempio di is_string
Example#5458 - Esempi di isset
Example#5459 - isset su Offset di Stringhe
Example#5460 - Esempio di print_r
Example#5461 - Esempio con il parametro return
Example#5462 - Esempio di serialize
Example#5463 - Esempio di settype
Example#5464 - Esempio di strval utilizzando il metodo magico __toString() di PHP 5.
Example#5465 - Esempio di uso di unserialize
Example#5466 - Esempio di unserialize_callback_func
Example#5467 - Esempio di unset
Example#5468 - Uso del casting di (unset)
Example#5469 - var_dump example
Example#5470 - Esempio di utilizzo di var_export
Example#5471 - Esportazione classi da PHP 5.1.0
Example#5472 - Utilizzo di __set_state() (da PHP 5.1.0)
Example#5473 -
Example#5474 - OAuth::fetch example
Example#5475 - OAuth::getAccessToken example
Example#5476 - OAuth::getRequestToken example
Example#5477 - OAuth::setRequestEngine example
Example#5478 - An OAuth::setRsaCertificate example
Example#5479 - OAuth::setToken example
Example#5480 - OAuthProvider::__construct example
Example#5481 - Example OAuthProvider::consumerHandler callback
Example#5482 - OAuthProvider::generateToken example
Example#5483 - OAuthProvider::is2LeggedEndpoint example
Example#5484 - Example OAuthProvider::timestampNonceHandler callback
Example#5485 - Example OAuthProvider::tokenHandler callback
Example#5486 - is_soap_fault example
Example#5487 - SOAP's standard method for error reporting is exceptions
Example#5488 - SoapClient::__construct example
Example#5489 - Using the SOAP_SINGLE_ELEMENT_ARRAYS feature
Example#5490 - SoapClient::__doRequest example
Example#5491 - SoapClient::__getFunctions example
Example#5492 - SoapClient::__getLastRequest() example
Example#5493 - SoapClient::__getLastRequestHeaders() example
Example#5494 - SoapClient::__getLastResponse() example
Example#5495 - SoapClient::__getLastResponse() example
Example#5496 - SoapClient::__getTypes example
Example#5497 - SoapClient::__setLocation example
Example#5498 - SoapClient::__setSoapHeaders example
Example#5499 - Set Multiple Headers
Example#5500 - SoapClient::__soapCall example
Example#5501 - SoapServer::addFunction example
Example#5502 - SoapServer::__construct example
Example#5503 - SoapServer::getFunctions example
Example#5504 - SoapServer::__getLastResponse() example
Example#5505 - SoapServer::handle example
Example#5506 - SoapServer::setPersistence example
Example#5507 - Some examples
Example#5508 - Some examples
Example#5509 - SoapHeader::__construct example
Example#5510 - SoapParam::__construct example
Example#5511 - SoapVar::__construct example
Example#5512 - Yar Server Example
Example#5513 - Access the server in browser(GET request)
Example#5514 - Yar Client Example
Example#5515 - Yar Concurrent Client Example
Example#5516 - Yar_Server::__construct example
Example#5517 - Yar_Server::handle example
Example#5518 - Yar_Client::__call example
Example#5519 - Yar_Client::__construct example
Example#5520 - Yar_Client::setOpt example
Example#5521 - Yar_Concurrent_Client::loop example
Example#5522 - Yar_Concurrent_Client::reset example
Example#5523 - Yar_Server_Exception::getType example
Example#5524 - Yar_Client_Exception::getType example
Example#5525 - Esempio delle funzioni client di XMLRPC
Example#5526 - Esempio del tipo XML-RPC
Example#5527 - Un esempio di xmlrpc_set_type
Example#5528 - For Each in ASP
Example#5529 - foreach in PHP
Example#5530 - com example (1)
Example#5531 - com example (2)
Example#5532 - dotnet example
Example#5533 - variant example
Example#5534 - Basic COMPersistHelper::saveToFile Usage
Example#5535 - COM event sink example
Example#5536 - Registering a PHP script to run as a service
Example#5537 - Unregistering a service
Example#5538 - Running as a service
Example#5539 - A win32_create_service example
Example#5540 - A win32_create_service example with dependencies
Example#5541 - A win32_create_service example with recovery
Example#5542 - A win32_delete_service example
Example#5543 - A win32_start_service_ctrl_dispatcher example
Example#5544 - book.xml
Example#5545 - Creating a new DOMAttr object
Example#5546 - DOMAttr::isId() Example
Example#5547 - Creating a new DOMCdataSection object
Example#5548 - DOMCharacterData::after example
Example#5549 - DOMCharacterData::before example
Example#5550 - DOMCharacterData::remove example
Example#5551 - DOMCharacterData::replaceWith example
Example#5552 - Creating a new DOMComment
Example#5553 - DOMDocument::adoptNode example
Example#5554 - DOMDocument::append example
Example#5555 - Creating a new DOMDocument
Example#5556 - Creating a new element and inserting it as root
Example#5557 - Passing text containing an unescaped & as value
Example#5558 - Creating a new element and inserting it as root
Example#5559 - A namespace prefix example
Example#5560 - DOMDocument::getElementById() Example
Example#5561 - Basic Usage Example
Example#5562 - Get all the XInclude elements
Example#5563 - DOMDocument::importNode example
Example#5564 - Creating a Document
Example#5565 - Creating a Document
Example#5566 - Creating a Document
Example#5567 - Creating a Document
Example#5568 - DOMDocument::prepend example
Example#5569 - Aggiunta di un nuovo metodo a DOMElement per semplificare il codice
Example#5570 - Recupero di elementi come classe personalizzata
Example#5571 - Recupero del proprietario del documento
Example#5572 - DOMDocument::replaceChildren example
Example#5573 - Saving a DOM tree into a file
Example#5574 - Saving a HTML tree into a string
Example#5575 - Saving a HTML tree into a file
Example#5576 - Saving a DOM tree into a string
Example#5577 - Example of DTD validation
Example#5578 - DOMDocument::xinclude() example
Example#5579 - DOMDocumentFragment::append example
Example#5580 - Appending XML data to your document
Example#5581 - DOMDocumentFragment::prepend example
Example#5582 - DOMDocumentFragment::replaceChildren example
Example#5583 - DOMElement::after example
Example#5584 - DOMElement::append example
Example#5585 - DOMElement::before example
Example#5586 - Creating a new DOMElement
Example#5587 - DOMElement::getAttributeNames example
Example#5588 - DOMElement::insertAdjacentElement example
Example#5589 - DOMElement::insertAdjacentText example
Example#5590 - DOMElement::prepend example
Example#5591 - DOMElement::remove example
Example#5592 - DOMElement::replaceChildren example
Example#5593 - DOMElement::replaceWith example
Example#5594 - Setting an attribute
Example#5595 - DOMElement::toggleAttribute example
Example#5596 - Creating a new DOMEntityReference
Example#5597 - Creating a document with an attached DTD
Example#5598 - Testing your DOM Implementation
Example#5599 - Getting an attribute on a node
Example#5600 - Accessing attribute with array syntax
Example#5601 - Adding a child
Example#5602 - Nested children
Example#5603 - Example with XPath query
Example#5604 - DOMNode::compareDocumentPosition example
Example#5605 - DOMNode::contains example
Example#5606 - DOMNode::getLineNo example
Example#5607 - DOMNode::getNodePath example
Example#5608 - DOMNode::getRootNode example
Example#5609 - DOMNode::isEqualNode example
Example#5610 - Removing a child
Example#5611 - Traversing all the entries of the table
Example#5612 - Accessing item with array syntax
Example#5613 - Traversing items with foreach
Example#5614 - DOMParentNode::replaceChildren example
Example#5615 - Creating a new DOMProcessingInstruction object
Example#5616 - Creating a new DOMText
Example#5617 - Getting the count of all the english books
Example#5618 - Getting all the english books
Example#5619 - Matching attribute value with quotes
Example#5620 - Register a namespaced XPath function and call it from the XPath expression
Example#5621 - book.xml
Example#5622 - DOMXPath::registerPhpFunctions with php:functionString
Example#5623 - DOMXPath::registerPhpFunctions with php:function
Example#5624 - DOMXPath::registerPhpFunctions with a callable
Example#5625 - Dom\Attr::isId() Example
Example#5626 - Dom\Attr::rename example to change both the namespace and qualified name
Example#5627 - Dom\Attr::rename example to change only the qualified name
Example#5628 - Dom\CharacterData::after example
Example#5629 - Dom\CharacterData::before example
Example#5630 - Dom\CharacterData::remove example
Example#5631 - Dom\CharacterData::replaceWith example
Example#5632 - Dom\HTMLDocument::createEmpty example
Example#5633 - Dom\HTMLDocument::createFromString example
Example#5634 - Dom\ParentNode::replaceChildren example
Example#5635 - Dom\TokenList::add example
Example#5636 - Dom\TokenList::contains example
Example#5637 - Dom\TokenList::item example
Example#5638 - Dom\TokenList::remove example
Example#5639 - Dom\TokenList::replace example
Example#5640 - Dom\TokenList::toggle example
Example#5641 - Importare SimpleXML nel DOM con dom_import_simplexml
Example#5642 - Import SimpleXML into DOM and modify SimpleXML through DOM
Example#5643 - A libxml_get_errors example
Example#5644 - libxml_set_external_entity_loader example
Example#5645 - A libxml_set_streams_context example
Example#5646 - A libxml_use_internal_errors example
Example#5647 - Include file examples/simplexml-data.php with XML string
Example#5648 - Getting <plot>
Example#5649 - Getting <line>
Example#5650 - Accessing non-unique elements in SimpleXML
Example#5651 - Using attributes
Example#5652 - Comparing Elements and Attributes with Text
Example#5653 - Comparing Two Elements
Example#5654 - Using XPath
Example#5655 - Setting values
Example#5656 - Adding elements and attributes
Example#5657 - DOM Interoperability
Example#5658 - Working with namespaces
Example#5659 - Loading broken XML string
Example#5660 - Add attributes and children to a SimpleXML element
Example#5661 - Add attributes and children to a SimpleXML element
Example#5662 - Get XML
Example#5663 - Using asXML() on SimpleXMLElement::xpath results
Example#5664 - Interpret an XML string
Example#5665 - Traversing a children() pseudo-array
Example#5666 - Using namespaces
Example#5667 - Create a SimpleXMLElement object
Example#5668 - Create a SimpleXMLElement object from a URL
Example#5669 - Counting the number of children
Example#5670 - Return the current element
Example#5671 - Get document namespaces
Example#5672 - Working with multiple namespaces
Example#5673 - Get XML element names
Example#5674 - Get document namespaces in use
Example#5675 - Return the sub-elements of the current element
Example#5676 - Check whether the current element has sub-elements
Example#5677 - Get the current XML tag key
Example#5678 - Move to the next element
Example#5679 - Setting a namespace prefix to use in an XPath query
Example#5680 - Rewind to the first element
Example#5681 - Get string content
Example#5682 - Check whether the current element is valid
Example#5683 - Xpath
Example#5684 - Importing a DOMDocument
Example#5685 - Importing a Dom\Document
Example#5686 - Interpret an XML document
Example#5687 - Interpret an XML string
Example#5688 - Serializing a single value with WDDX
Example#5689 - Using incremental packets with WDDX
Example#5690 - wddx_serialize_vars example
Example#5691 - Show XML Element Structure
Example#5692 - Map XML to HTML
Example#5693 - External Entity Example
Example#5694 - xmltest.xml
Example#5695 - xmltest2.xml
Example#5696 - Show XML Element Structure
Example#5697 - Esempio di uso xml_parse_into_struct
Example#5698 - moldb.xml - piccolo database di informazioni sulle molecole
Example#5699 - parsemoldb.php - analizza moldb.xml in un array di oggetti molecolari
Example#5700 - Esempio di uso di xml_set_object
Example#5701 - Validating XML
Example#5702 - Creating a simple XML document
Example#5703 - Working with XML namespaces
Example#5704 - Working with the OO API
Example#5705 - Direct output of XML
Example#5706 - XMLWriter::setIndent and mixed Content
Example#5707 - Basic XMLWriter::startAttribute Usage
Example#5708 - Intermixing Sub-elements and Attributes
Example#5709 - Basic xmlwriter_write_cdata Usage
Example#5710 - collection.xml
Example#5711 - collection.xsl
Example#5712 - fruits.xml
Example#5713 - fruits.xsl
Example#5714 - Collating and printing errors
Example#5715 - Creating an XSLTProcessor
Example#5716 - Testing EXSLT support
Example#5717 - Simple PHP Function call from a stylesheet
Example#5718 - Simple PHP Function call from a stylesheet
Example#5719 - Changing the owner before the transformation
Example#5720 - Example profiling output
Example#5721 - Transforming to a DOMDocument
Example#5722 - Transforming to a Dom\Document
Example#5723 - Transforming to a HTML file
Example#5724 - Transforming to a HTML file using Dom\Document
Example#5725 - Transforming to a string
Example#5726 - Transforming to a string using Dom\Document
Example#5727 - Un elemento nascosto di un form HTML
Example#5728 - Dati da modificare dall'utente
Example#5729 - In un URL
Example#5730 - Generare Javascript con PHP
Example#5731 - Esempio di codice PHP/FI
Example#5732 - Attivare la visualizzazione completa degli errori per il dominio dev.
Example#5733 - Aggiungere uno script di sicurezza per le aree protette
Example#5734 - Unix include_path
Example#5735 - Windows include_path
Example#5736 - include_path su Unix utilizzando la variabile d'ambiente ${USER}
Example#5737 - string.rot13
Example#5738 - string.toupper
Example#5739 - string.tolower
Example#5740 - string.strip_tags
Example#5741 - convert.base64-encode & convert.base64-decode
Example#5742 - convert.quoted-printable-encode & convert.quoted-printable-decode
Example#5743 - convert.iconv.*
Example#5744 - zlib.deflate and zlib.inflate
Example#5745 - zlib.deflate simple
Example#5746 - bzip2.compress and bzip2.decompress
Example#5747 - Encrypt/Decrypt with Blowfish
Example#5748 - Encrypt file using AES-128 CBC with SHA256 HMAC
Found A Problem?
Learn How To Improve This Page
•
Submit a Pull Request
•
Report a Bug
+
add a note
User Contributed Notes
There are no user contributed notes for this page.
0
pcntl_sigtimedwait
Waits for signals, with a timeout
0
similar_text
Calculate the similarity between two strings
0
boolval
Get the boolean value of a variable
0
curl_multi_close
Close a set of cURL handles
0
imap_body
Read the message body
0
mb_strpos
Find position of first occurrence of string in a string
0
pg_send_prepare
Sends a request to create a prepared statement with the given parameters, without waiting for completion
0
swoole_native_socket_bind
0
Arr::prependKeysWith
0
zend_version
Gets the version of the current Zend engine
^