Lista de exemplos
Lista de todos os exemplos no manual
- Example#0 - Um exemplo introdutório
- Example#1 - Nosso primeiro script PHP: ola.php
- Example#2 - Imprimindo a variável (Elemento Array)
- Example#3 - Exibindo todas as variáveis pré-definidas usando a função phpinfo
- Example#4 - Exemplo usando controles de declarações e funções
- Example#5 - Mesclando entre os modos PHP e HTML
- Example#6 - Um simples formulário HTML
- Example#7 - Imprimindo dados de nosso formulário
- Example#8 - Instruções de Instalação (Apache Versão de Módulo Compartilhado) para PHP
- Example#9 - Instruções de Instalação (Instalação como módulo estático do Apache) para o PHP
- Example#10 - Exemplo de comandos para reinicialização do Servidor Apache
- Example#11 - Instruções de Instalação (Versão de Módulo Compartilhado do Apache 2)
- Example#12 - Partial lighttpd.conf
- Example#13 - Spawning FastCGI Responders
- Example#14 - Connecting to remote php-fastcgi instances
- Example#15 - Instruções de Instalação para o Caudium
- Example#16 - Exemplo de instalação de pacote no OpenBSD
- Example#17 - Adicionando o repositório Dotdeb
- Example#18 - Exemplo de Instalação no Debian com o Apache 1.3
- Example#19 - Parando e iniciando o Apache depois que o PHP estiver instalado
- Example#20 - Pegando a lista de pacotes adicionais do PHP
- Example#21 - Instalar o PHP com MySQL, cURL e GD
- Example#22 - Essas linhas ativam o MySQL, cURL e GD no PHP
- Example#23 - Essa linha ativa o PHP 4 no Apache
- Example#24 - Estrutura do pacote PHP 5
- Example#25 - CGI and FastCGI settings in php.ini
- Example#26 - Configuring FastCGI extension to handle PHP requests
- Example#27 - Configuring file access permissions
- Example#28 - Configuring FastCGI and PHP recycling
- Example#29 - Configuring FastCGI timeout settings
- Example#30 - Changing the location of php.ini file
- Example#31 - CGI and FastCGI settings in php.ini
- Example#32 - Creating IIS FastCGI process pool
- Example#33 - Creating handler mapping for PHP requests
- Example#34 - Determining the account used as IIS anonymous identity
- Example#35 - Configuring file access permissions
- Example#36 - Set index.php as a default document in IIS
- Example#37 - Configuring FastCGI and PHP recycling
- Example#38 - Configuring FastCGI timeout settings
- Example#39 - Changing the location of php.ini file
- Example#40 - PHP como um módulo do Apache 1.3.x
- Example#41 - PHP e Apache 1.3.x como CGI
- Example#42 - PHP e Apache 2.0 como CGI
- Example#43 - PHP e Apache 2.0 como Módulo
- Example#44 - Configuração ISAPI do Sambar
- Example#45 - Habilitar a extensão Bzip2 para o PHP-Windows
- Example#46 - Registry changes
- Example#47 - Passing environment variables and PHP settings to a pool
- Example#48 - php.ini example
- Example#49 - Exemplo de configuração do Apache
- Example#50 - Escapando de modo avançado
- Example#51 - Abrindo e Fechando as Tags do PHP
- Example#52 - Literais inteiras
- Example#53 - Octal weirdness
- Example#54 - Exemplo inválido
- Example#55 - Exemplo de delimitação de strings heredoc
- Example#56 - Exemplo de Heredoc em argumentos
- Example#57 - Exemplo de string em Nowdoc
- Example#58 - Exemplo com dado estático
- Example#59 - Alguns exemplos com strings
- Example#60 - Utilizando array()
- Example#61 - Coleção
- Example#62 - Coleção
- Example#63 - Array baseado em 1
- Example#64 - Preenchendo um array real
- Example#65 - Ordenando arrays
- Example#66 - Arrays recursivos e multidimensionais
- Example#67 - Exemplo de funções callback
- Example#68 - Valores padrões de variáveis não inicializadas
- Example#69 - Usando global
- Example#70 - Usando $GLOBALS no lugar de global
- Example#71 - Exemplo demonstrando superglobals e escopos
- Example#72 - Exemplo demonstrando a necessidade de variáveis estáticas
- Example#73 - Exemplo de uso de variáveis estáticas
- Example#74 - Variáveis estáticas em funções recursivas
- Example#75 - Declarando variáveis static
- Example#76 - Um formulário HTML simples
- Example#77 - Acessando dados de um formulário HTML via POST
- Example#78 - Variáveis de formulários mais complexos
- Example#79 - Exemplo setcookie
- Example#80 - Nomes de constantes válidos e inválidos
- Example#81 - Definindo Constantes
- Example#82 - Definindo Constantes usando a palavra-chave const
- Example#83 - Associatividade
- Example#84 - Transcrição do padrão de comparação de array
- Example#85 - Atribuindo um valor padrão
- Example#86 - Não-óbvio comportamento do ternário
- Example#87 - Operações aritmétricas em variáveis caractere
- Example#88 - Ilustrando operadores lógicos
- Example#89 - Comparando arrays
- Example#90 - Usando instanceof com classes
- Example#91 - Usando instanceof com herança
- Example#92 - Usando instanceof para verificar se o objeto não é uma
instância da classe
- Example#93 - Usando instanceof para classe
- Example#94 - Usando instanceof com outras variáveis
- Example#95 - Evitando que o nome da classe seje verificado e fatal erros com instanceof no PHP 5.0
- Example#96 - switch structure
- Example#97 - switch structure allows usage of strings
- Example#98 - Tick usage example
- Example#99 - Ticks usage example
- Example#100 - Declaring an encoding for the script.
- Example#101 - Basic include example
- Example#102 - Including within functions
- Example#103 - include through HTTP
- Example#104 - Comparing return value of include
- Example#105 - include and the return statement
- Example#106 - Using output buffering to include a PHP file into a string
- Example#107 - include_once with a case insensitive OS in PHP 4
- Example#108 - goto example
- Example#109 - goto loop example
- Example#110 - This will not work
- Example#111 - Pseudo-código de demonstração de uma função
- Example#112 - Funções definidas condicionalmente
- Example#113 - Funções dentro de funções
- Example#114 - Funções Recursivas
- Example#115 - Passando arrays para funções
- Example#116 - Passando parâmetros de função por referência
- Example#117 - Utilizando parâmetros padrão em funções
- Example#118 - Usando tipos não escalares como valores padrões
- Example#119 - Uso incorreto de parâmetros padrão de função
- Example#120 - Uso correto de parâmetros padrão de função
- Example#121 - O uso de return
- Example#122 - Retornando um array para devolver vários valores
- Example#123 - Retornando uma referência de uma função
- Example#124 - Exemplo de funções variáveis
- Example#125 - Exemplo de chama de método variável
- Example#126 - Exemplo de Função Anonima
- Example#127 - Exemplo de como definir uma função anonima para uma variável
- Example#128 - Closures e escopo
- Example#129 - Variável $this em linguagens com orientação a objetos
- Example#130 - Definição de SimpleClass
- Example#131 - Valor padrão de membros da classe
- Example#132 - Exemplo com dado estático
- Example#133 - Criando uma instância
- Example#134 - Atribuição de Objetos
- Example#135 - Herança da Classe Simples
- Example#136 - property declarations
- Example#137 - Example of using a nowdoc to initialize a property
- Example#138 - Definindo e usando uma constante
- Example#139 - Exemplo com informação estática
- Example#140 - Exemplo de Autoload
- Example#141 - Outro exemplo de Autoload
- Example#142 - Autoloading with exception handling for 5.3.0+
- Example#143 - Autoloading com manipulação de exceção para 5.3.0+ - Faltando exceção customizada.
- Example#144 - Usando novos construtores unificados
- Example#145 - Construtores em classes dentro de namespace
- Example#146 - Exemplo de Destrutor
- Example#147 - Declaração de Membros
- Example#148 - Declaração de método
- Example#149 - Inheritance Example
- Example#150 - :: de fora da definição da classe
- Example#151 - :: de dentro da definição da classe
- Example#152 - Chamando um método pai
- Example#153 - Exemplo de membro estático
- Example#154 - Exemplo de método estático
- Example#155 - Exemplo de classe abstrata
- Example#156 - Exemplo de Interface
- Example#157 - Interfaces estendíveis
- Example#158 - Interface com herança múltipla
- Example#159 - Interfaces com constantes
- Example#160 - Trait example
- Example#161 - Precedence Order Example
- Example#162 - Alternate Precedence Order Example
- Example#163 - Multiple Traits Usage
- Example#164 - Conflict Resolution
- Example#165 - Changing Method Visibility
- Example#166 - Traits Composed from Traits
- Example#167 - Express Requirements by Abstract Methods
- Example#168 - Static Variables
- Example#169 - Static Methods
- Example#170 - Defining Properties
- Example#171 - Conflict Resolution
- Example#172 - Sobrecarregando propriedades via __get(),
__set(), __isset()
and __unset()
- Example#173 - Sobrecarga de métodos instanciados com __call()
e __callStatic()
- Example#174 - Simple Object Iteration
- Example#175 - Iteração de Objeto implmentando Iterator
- Example#176 - Iteração de Objeto implementado IteratorAggregate
- Example#177 - Método Factory Parametrizado
- Example#178 - Função Singleton
- Example#179 - Sleep e wakeup
- Example#180 - Exemplo Simples
- Example#181 - Usando __invoke
- Example#182 - Usando __set_state() (desde o PHP 5.1.0)
- Example#183 - Exemplo de métodos 'final'
- Example#184 - Exemplo de classe Final
- Example#185 - Clonando um objeto
- Example#186 - Exemplo de comparação de objetos no PHP 5
- Example#187 - Exemplo Indução de Tipo
- Example#188 - Uso do self::
- Example#189 - Simples uso do static::
- Example#190 - Uso do static:: em um contexto não-estático
- Example#191 - Chamadas encaminhadas e não-encaminhadas
- Example#192 - Late static bindings em métodos mágicos
- Example#193 - Referências e Objetos
- Example#194 - Defining namespace
- Example#195 - Usando o nome com namespace
- Example#196 - Importando e acessando namespace
- Example#197 - Usando a especificação de espaço global
- Example#198 - Usando __NAMESPACE__
- Example#199 - Ilustrando resolução de nomes
- Example#200 - Disparando uma Exceção
- Example#201 - Exceções aninhadas
- Example#202 - A classe nativa Exception
- Example#203 - Herdando a classe Exception
- Example#204 - Usando referência com variáveis indefinidas
- Example#205 - Referenciando variáveis globais de dentro de funções
- Example#206 - Referências e o comando foreach
- Example#207 - Exemplo da $GLOBALS
- Example#208 - Exemplo da $_SERVER
- Example#209 - Exemplo da $_GET
- Example#210 - Exemplo da $_POST
- Example#211 - Exemplo da $_ENV
- Example#212 - Exemplo da $_COOKIE
- Example#213 - Exemplo da $php_errormsg
- Example#214 - Exemplo da $http_response_header
- Example#215 - Exemplo da $argc
- Example#216 - Exemplo da $argv
- Example#217 - Exemplo da Exception::getMessage
- Example#218 - Exemplo da Exception::getCode
- Example#219 - Exemplo da Exception::getFile
- Example#220 - Exemplo da Exception::getLine
- Example#221 - Exemplo da Exception::getTrace
- Example#222 - Exemplo da Exception::getTraceAsString
- Example#223 - Exemplo da Exception::__toString
- Example#224 - Tornando todas mensagens de erro em ErrorException.
- Example#225 - Exemplo da ErrorException
- Example#226 - Basic usage
- Example#227 - Basic usage
- Example#228 - Basic usage
- Example#229 - ArrayAccess::offsetExists example
- Example#230 - Basic usage
- Example#231 - Closure::bind example
- Example#232 - Closure::bindTo example
- Example#233 - Basic bindto usage example
- Example#234 - Fetch a page and send POST data
- Example#235 - Ignore redirects but fetch headers and content
- Example#236 - Fetch a page and send POST data
- Example#237 - Detecting which URL we ended up on after redirects
- Example#238 - Sending custom headers with an HTTP request
- Example#239 - php://temp/maxmemory
- Example#240 - php://filter/resource=<stream to be filtered>
- Example#241 - php://filter/read=<filter list to apply to read chain>
- Example#242 - php://filter/write=<filter list to apply to write chain>
- Example#243 - Print data:// contents
- Example#244 - Fetch the media type
- Example#245 - Basic usage
- Example#246 - Opening a stream from an active connection
- Example#247 - Traversing a RAR archive
- Example#248 - Opening an encrypted file (header encryption)
- Example#249 - Checagem fraca de variáveis resulta em....
- Example#250 - ... um ataque ao sistema de arquivos
- Example#251 - Checagem mais segura do nome do arquivo
- Example#252 - Checagem mais segura do nome do arquivo
- Example#253 - Script vulnerável à bytes nulos
- Example#254 - Validando entrada corretamente
- Example#255 - Usando campo de senha hasheado
- Example#256 - Dividinto o result set em páginas ... e criando super-usuários
(PostgreSQL)
- Example#257 - Listando artigos ... e algumas senhas (qualquer banco de dados)
- Example#258 - De reinicializando uma senha ... para ganhando mais privilégios (qualquer banco de dados)
- Example#259 - Atacando o sistema operacional do servidor (MSSQL Server)
- Example#260 - Uma maneira mais segura para compor consultas de paginação
- Example#261 - Atacando variáveis com uma página HTML personalizada
- Example#262 - Explorando variáveis comuns de depuração
- Example#263 - Encontrado variáveis perigosas com E_ALL
- Example#264 - Exemplo de uso incorreto de register_globals = on
- Example#265 - Exemplo de uso de sessões com register_globals ligada ou desligada
- Example#266 - Detecção simples de falsificação de variáveis
- Example#267 - Uso Perigoso de Variáveis
- Example#268 - Desabilitando magic quotes no lado do servidor
- Example#269 - Desabilitando magic quotes em tempo de execução
- Example#270 - Escondendo o PHP como outra linguagem
- Example#271 - Usando extensões desconhecidas para o PHP
- Example#272 - Usando extensão HTML para o PHP
- Example#273 - Exemplo de Autenticação HTTP
- Example#274 - Exemplo de Autenticação HTTP do tipo Digest
- Example#275 - Exemplo de Autenticação via HTTP forçando um(a) novo(a) nome/senha
- Example#276 - Um formulário XForms simples de busca
- Example#277 - Usando um XForm para popular o $_POST
- Example#278 - Formulário para Upload de Arquivo
- Example#279 - Validando o upload de arquivos
- Example#280 - Carregando múltiplos arquivos
- Example#281 - Salvando arquivos HTTP PUT com o PHP 4
- Example#282 - Pegando o título de uma página remota
- Example#283 - Guardando informação em um servidor remoto
- Example#284 - Example showing the difference to the CGI
SAPI:
- Example#285 -
- Example#286 - Printing built in (and loaded) PHP and Zend modules
- Example#287 - Getting a syntax error when using double quotes
- Example#288 - Using single quotes to prevent the shell's variable
substitution
- Example#289 - Using the -B, -R and
-E options to count the number of lines of a
project.
- Example#290 - Using -v to get the SAPI
name and the version of PHP and Zend
- Example#291 - --ini example
- Example#292 - basic --rf usage
- Example#293 - --rc example
- Example#294 - --re example
- Example#295 - --ri example
- Example#296 - Execute PHP script as shell script
- Example#297 - Script intended to be run from command line (script.php)
- Example#298 - Batch file to run a command line PHP script (script.bat)
- Example#299 - Executing code using the interactive shell
- Example#300 - Tab completion
- Example#301 - Setting php.ini settings in the interactive shell
- Example#302 - Starting the web server
- Example#303 - Starting with a specific document root directory
- Example#304 - Using a Router Script
- Example#305 - Checking for CLI Web Server Use
- Example#306 - Handling Unsupported File Types
- Example#307 - Accessing the CLI Web Server From Remote Machines
- Example#308 - Creating a new zval container
- Example#309 - Displaying zval information
- Example#310 - Increasing refcount of a zval
- Example#311 - Decreasing zval refcount
- Example#312 - Creating a array zval
- Example#313 - Adding already existing element to an array
- Example#314 - Removing an element from an array
- Example#315 - Adding the array itself as an element of it self
- Example#316 - Unsetting $a
- Example#317 - Memory usage example
- Example#318 - GC performance influences
- Example#319 - Running the above script
- Example#320 - Recompiling PHP to enable GC benchmarking
- Example#321 - GC statistics
- Example#322 - An apc.rfc1867 example
- Example#323 - A apc_add example
- Example#324 - apc_bin_load example
- Example#325 - Um exemplo de apc_cache_info
- Example#326 - apc_cas example
- Example#327 - apc_dec example
- Example#328 - Exemplo de apc_define_constants
- Example#329 - apc_delete_file example
- Example#330 - Um exemplo de apc_delete
- Example#331 - apc_exists example
- Example#332 - Um exemplo de apc_fetch
- Example#333 - apc_inc example
- Example#334 - Exemplo de apc_load_constants
- Example#335 - Um exemplo de apc_sma_info
- Example#336 - Um exemplo de apc_store
- Example#337 - Typical session using tcplisten
- Example#338 - apd_callstack example
- Example#339 - apd_clunk example
- Example#340 - apd_continue example
- Example#341 - apd_croak example
- Example#342 - apd_dump_function_table example
- Example#343 - apd_dump_persistent_resources example
- Example#344 - apd_dump_regular_resources example
- Example#345 - apd_echo example
- Example#346 - apd_get_active_symbols example
- Example#347 - apd_set_pprof_trace example
- Example#348 - apd_set_session_trace_socket example
- Example#349 - apd_set_session_trace example
- Example#350 - apd_set_session example
- Example#351 - override_function example
- Example#352 - rename_function example
- Example#353 - Exemplo de bcompiler_load
- Example#354 - Exemplo de chamada à bcompiler_load
- Example#355 - Exemplo de uso de bcompiler_parse_class
- Example#356 - Exemplo de uso de bcompiler_read
- Example#357 - Exemplo de uso de bcompiler_write_class
- Example#358 - Exemplo de uso de bcompiler_write_constant
- Example#359 - Exemplo de uso de bcompiler_write_footer
- Example#360 - Exemplo de uso de bcompiler_write_file
- Example#361 - Exemplo de uso de bcompiler_write_footer
- Example#362 - Exemplo de uso de bcompiler_write_function
- Example#363 - Exemplo de uso de bcompiler_write_functions_from_file
- Example#364 - bcompiler_write_header example
- Example#365 - Usando gerenciamento de erro em um script
- Example#366 - debug_backtrace example
- Example#367 - debug_print_backtrace example
- Example#368 - Um exemplo da error_get_last
- Example#369 - Exemplos de error_log
- Example#370 - Exemplos error_reporting
- Example#371 - Exemplo restore_error_handler
- Example#372 - Manipulação de erros com set_error_handler e trigger_error
- Example#373 - Um exemplo de set_exception_handler
- Example#374 - Exemplo trigger_error
- Example#375 - Getting the data within the PHP application itself (function)
- Example#376 - Example use of gengraph.php
- Example#377 - Listing data via inclued dumps (configuration)
- Example#378 - inclued_get_data example
- Example#379 - Creating large array in a function
- Example#380 - Exemplo de Controle de Saída
- Example#381 - Exemplo ob_end_clean
- Example#382 - Exemplo ob_end_flush
- Example#383 - Um exemplo simples de ob_get_clean
- Example#384 - Um simples exemplo da ob_get_contents
- Example#385 - ob_get_flush example
- Example#386 - Um simples exemplo da ob_get_length
- Example#387 - Exemplo ob_gzhandler
- Example#388 - ob_list_handlers example
- Example#389 - Exemplo com uma função de callback definida pelo usuário
- Example#390 - output_add_rewrite_var example
- Example#391 - output_reset_rewrite_vars example
- Example#392 - Gerenciando uma afirmação que falhou com uma função do usuário
- Example#393 - Exemplosdl
- Example#394 - Exemplo extension_loaded
- Example#395 - A gc_enabled example
- Example#396 - Exemplo da get_defined_constants
- Example#397 - Imprime as funções de XML
- Example#398 - Exemplo get_include_path
- Example#399 - Exemplo get_included_files (abc.php)
- Example#400 - Exemplo da get_loaded_extensions
- Example#401 - Exemplo get_magic_quotes_gpc
- Example#402 - Exemplo da getlastmod
- Example#403 - Exemplo da getopt
- Example#404 - Exemplo da getrusage
- Example#405 - Exemplo ini_get_all
- Example#406 - Exemplo da memory_get_usage
- Example#407 - php_ini_loaded_file example
- Example#408 - Um exemplo simples para a lista de arquivos ini retornados
- Example#409 - Exemplo php_logo_uid
- Example#410 - Exemplo da php_sapi_name
- Example#411 - Alguns exemplos de php_uname
- Example#412 - Algumas constantes relacionadas com o sistema operacional
- Example#413 - Imprimindo os créditos gerais
- Example#414 - Imprime os desenvolvedores do core e o grupo da documentação
- Example#415 - Imprimindo todos os créditos
- Example#416 - Exemplos phpinfo
- Example#417 - Exemplo phpversion
- Example#418 - Definindo uma variável de ambiente
- Example#419 - Exemplo restore_include_path
- Example#420 - Exemplo set_include_path
- Example#421 - Adicionando mais entradas ao include path
- Example#422 - sys_get_temp_dir example
- Example#423 - version_compare examples
- Example#424 - Exemplo da zend_logo_guid
- Example#425 - zend_thread_id example
- Example#426 - Exemplo zend_version
- Example#427 - Custom Superglobals with runkit.superglobal=_FOO,_BAR in php.ini
- Example#428 - Instantiating a restricted sandbox
- Example#429 - Working with variables in a sandbox
- Example#430 - Calling sandbox functions
- Example#431 - Passing arguments to sandbox functions
- Example#432 - Working with variables in a sandbox
- Example#433 - Accessing parental variables
- Example#434 - A runkit_class_adopt example
- Example#435 - A runkit_class_emancipate example
- Example#436 - A runkit_function_add example
- Example#437 - A runkit_function_copy example
- Example#438 - A runkit_function_redefine example
- Example#439 - runkit_method_add example
- Example#440 - runkit_method_copy example
- Example#441 - runkit_method_redefine example
- Example#442 - runkit_method_remove example
- Example#443 - runkit_method_rename example
- Example#444 - runkit_return_value_used example
- Example#445 - Feeding output to a variable
- Example#446 - Enabling and disabling scream at runtime
- Example#447 - Weakref usage example
- Example#448 - WeakRef usage example
- Example#449 - Weakref::acquire example
- Example#450 - Nested acquire/release example
- Example#451 - Weakref::__construct example
- Example#452 - Weakref::release example
- Example#453 - Weakmap usage example
- Example#454 - wincache.ignorelist example
- Example#455 - Authentication configuration for wincache.php
- Example#456 - Enabling WinCache session handler
- Example#457 - Enabling WinCache functions reroutes
- Example#458 - Reroute.ini file content
- Example#459 - A wincache_fcache_fileinfo example
- Example#460 - A wincache_fcache_meminfo example
- Example#461 - Using wincache_lock
- Example#462 - A wincache_ocache_fileinfo example
- Example#463 - A wincache_ocache_meminfo example
- Example#464 - A wincache_refresh_if_changed example
- Example#465 - A wincache_rplist_fileinfo example
- Example#466 - A wincache_rplist_meminfo example
- Example#467 - A wincache_scache_info example
- Example#468 - A wincache_scache_meminfo example
- Example#469 - wincache_ucache_add with key as a string
- Example#470 - wincache_ucache_add with key as an array
- Example#471 - Using wincache_ucache_cas
- Example#472 - using wincache_ucache_clear
- Example#473 - Using wincache_ucache_dec
- Example#474 - Using wincache_ucache_delete with key as a string
- Example#475 - Usingwincache_ucache_delete with key as an array
- Example#476 - Using wincache_ucache_delete with key as an array where some elements cannot be deleted
- Example#477 - Using wincache_ucache_exists
- Example#478 - wincache_ucache_get with key as a string
- Example#479 - wincache_ucache_get with key as an array
- Example#480 - Using wincache_ucache_inc
- Example#481 - Using wincache_ucache_info
- Example#482 - A wincache_ucache_meminfo example
- Example#483 - wincache_ucache_set with key as a string
- Example#484 - wincache_ucache_set with key as an array
- Example#485 - Using wincache_unlock
- Example#486 - Xhprof example with the optional GUI
- Example#487 - xhprof_disable example
- Example#488 - xhprof_enable examples
- Example#489 - xhprof_sample_disable example
- Example#490 - id3_get_frame_long_name example
- Example#491 - id3_get_frame_short_name example
- Example#492 - id3_get_genre_id example
- Example#493 - id3_get_genre_list example
- Example#494 - id3_get_genre_name example
- Example#495 - id3_get_tag example
- Example#496 - id3_get_tag example
- Example#497 - id3_get_version example
- Example#498 - id3_remove_tag example
- Example#499 - id3_set_tag example
- Example#500 - Opens a new MP3 file and read the title
- Example#501 - Reading an OGG/Vorbis file
- Example#502 - Encode an audio file to OGG/Vorbis
- Example#503 - KADM5 extension overview example
- Example#504 - Example of changing principal's password
- Example#505 - Example of principal's creation
- Example#506 - kadm5_delete_principal example
- Example#507 - kadm5_get_policies example
- Example#508 - kadm5_get_principal example
- Example#509 - kadm5_get_principals example
- Example#510 - KADM5 initialization example
- Example#511 - Example of modifying principal
- Example#512 - radius_acct_open example
- Example#513 - radius_add_server example
- Example#514 - radius_auth_open example
- Example#515 - radius_create_request example
- Example#516 - radius_cvt_addr example
- Example#517 - radius_cvt_int example
- Example#518 - radius_cvt_string example
- Example#519 - radius_get_attr example
- Example#520 - radius_get_vendor_attr example
- Example#521 - radius_put_attr example
- Example#522 - radius_put_int example
- Example#523 - radius_put_string example
- Example#524 - radius_put_vendor_attr example
- Example#525 - Exemplo da cal_days_in_month
- Example#526 - cal_from_jd exemplo
- Example#527 - Exemplo de cal_info
- Example#528 - easter_date exemplo
- Example#529 - easter_days exemplo
- Example#530 - Funções de Calendário
- Example#531 - jdtojewish Exemplo
- Example#532 - Exemplo da checkdate
- Example#533 - Lendo a timezone padrão
- Example#534 - Lendo a abreviação de uma timezone
- Example#535 - Lendo a timezone padrão
- Example#536 - Um exemplo da date_modify
- Example#537 - date_parse_from_format example
- Example#538 - Um exemplo da date_parse
- Example#539 - Um exemplo de date_sun_info
- Example#540 - date_sunrise example
- Example#541 - date_sunset example
- Example#542 - Exemplos da date
- Example#543 - Caracteres de escape em date
- Example#544 - Exemplo da date e mktime
- Example#545 - Formatação de date
- Example#546 - Exemplo da getdate
- Example#547 - Exemplo da gettimeofday
- Example#548 - Exemplo da gmdate
- Example#549 - gmmktime no Windows
- Example#550 - Exemplo da gmstrftime
- Example#551 - idate example
- Example#552 - Exemplo da localtime
- Example#553 - Cronometrando a execução do script com microtime
- Example#554 - Timing script execution in PHP 5
- Example#555 - Exemplo da mktime
- Example#556 - Último dia do próximo mês
- Example#557 - strftime exemplos locais
- Example#558 - Exemplo de número de semana ISO 8601:1988
- Example#559 - strptime example
- Example#560 - Exemplo da strtotime
- Example#561 - Checando por falha
- Example#562 - time example
- Example#563 - A timezone_name_from_abbr example
- Example#564 - Getting the timezonedb version
- Example#565 - Writing a string with a specified color to the screen
- Example#566 - ncurses_getmouse example
- Example#567 - Writing a string with a specified color to the screen
- Example#568 - Writing a string with a specified color to the screen
- Example#569 - ncurses_mousemask example
- Example#570 - Writing a string with a specified color to the screen
- Example#571 - Newt Usage Example
- Example#572 - A newt_button example
- Example#573 - A newt_draw_root_text example
- Example#574 - A newt_form_add_component example
- Example#575 - A newt_form_add_components example
- Example#576 - A newt_form example
- Example#577 - A newt_get_screen_size example
- Example#578 - A newt_win_entries example
- Example#579 - Readline Callback Interface Example
- Example#580 - readline
- Example#581 - Um exemplo simples de bzip2
- Example#582 - Exemplo de bzcompress
- Example#583 - bzdecompress
- Example#584 - Exemplo da bzerror
- Example#585 - Exemplo de bzopen
- Example#586 - Exemplo de bzread
- Example#587 - Exemplo de bzwrite
- Example#588 - Using an external file
- Example#589 - Using a file within a phar archive
- Example#590 - Converting a phar archive from phar to tar file format
- Example#591 - phar.extract_list usage example
- Example#592 - phar.cache_list usage example
- Example#593 - A Phar::addEmptyDir example
- Example#594 - A Phar::addFile example
- Example#595 - A Phar::addFromString example
- Example#596 - A Phar::apiVersion example
- Example#597 - A Phar::buildFromDirectory example
- Example#598 - A Phar::buildFromIterator with SplFileInfo
- Example#599 - A Phar::buildFromIterator with other iterators
- Example#600 - A Phar::canCompress example
- Example#601 - A Phar::canWrite example
- Example#602 - A Phar::compress example
- Example#603 - A Phar::compressAllFilesBZIP2 example
- Example#604 - A Phar::compressAllFilesGZ example
- Example#605 - A Phar::compressFiles example
- Example#606 - A Phar::__construct example
- Example#607 - A Phar::convertToData example
- Example#608 - A Phar::convertToExecutable example
- Example#609 - A Phar::copy example
- Example#610 - A Phar::count example
- Example#611 - A Phar::createDefaultStub example
- Example#612 - A Phar::decompress example
- Example#613 - A Phar::decompressFiles example
- Example#614 - A Phar::delMetaData example
- Example#615 - A Phar::delete example
- Example#616 - A Phar::extractTo example
- Example#617 - A Phar::getMetadata example
- Example#618 - A Phar::getStub example
- Example#619 - A Phar::hasMetadata example
- Example#620 - A Phar::interceptFileFuncs example
- Example#621 - A Phar::interceptFileFuncs example
- Example#622 - A Phar::isBuffering example
- Example#623 - A Phar::isCompressed example
- Example#624 - A Phar::loadPhar example
- Example#625 - A Phar::mapPhar example
- Example#626 - A Phar::mount example
- Example#627 - A Phar::mungServer example
- Example#628 - A Phar::offsetExists example
- Example#629 - Phar::offsetGet example
- Example#630 - A Phar::offsetSet example
- Example#631 - A Phar::offsetUnset example
- Example#632 - A Phar::running example
- Example#633 - A Phar::setAlias example
- Example#634 - A Phar::setDefaultStub example
- Example#635 - A Phar::setMetadata example
- Example#636 - A Phar::setStub example
- Example#637 - A Phar::startBuffering example
- Example#638 - A Phar::stopBuffering example
- Example#639 - A Phar::uncompressAllFiles example
- Example#640 - A Phar::unlinkArchive example
- Example#641 - A Phar::webPhar example
- Example#642 - A PharData::addEmptyDir example
- Example#643 - A PharData::addFile example
- Example#644 - A PharData::addFromString example
- Example#645 - A PharData::buildFromDirectory example
- Example#646 - A PharData::buildFromIterator with SplFileInfo
- Example#647 - A PharData::buildFromIterator with other iterators
- Example#648 - A PharData::compress example
- Example#649 - A PharData::compressFiles example
- Example#650 - A PharData::__construct example
- Example#651 - A PharData::convertToData example
- Example#652 - A PharData::convertToExecutable example
- Example#653 - A PharData::copy example
- Example#654 - A PharData::decompress example
- Example#655 - A PharData::decompressFiles example
- Example#656 - A PharData::delMetaData example
- Example#657 - A PharData::delete example
- Example#658 - A PharData::extractTo example
- Example#659 - A PharData::offsetSet example
- Example#660 - A PharData::offsetUnset example
- Example#661 - A Phar::setMetadata example
- Example#662 - A PharFileInfo::chmod example
- Example#663 - A PharFileInfo::compress example
- Example#664 - A PharFileInfo::__construct example
- Example#665 - A PharFileInfo::decompress example
- Example#666 - A PharFileInfo::delMetaData example
- Example#667 - A PharFileInfo::getCRC32 example
- Example#668 - A PharFileInfo::getCompressedSize example
- Example#669 - A PharFileInfo::getMetadata example
- Example#670 - A PharFileInfo::getPharFlags example
- Example#671 - A PharFileInfo::isCRCChecked example
- Example#672 - A PharFileInfo::isCompressed example
- Example#673 - A PharFileInfo::isCompressedBZIP2 example
- Example#674 - A PharFileInfo::isCompressedGZ example
- Example#675 - A PharFileInfo::setCompressedBZIP2 example
- Example#676 - A PharFileInfo::setCompressedGZ example
- Example#677 - A PharFileInfo::setMetadata example
- Example#678 - A PharFileInfo::setUncompressed example
- Example#679 - Rar installation
- Example#680 - On-the-fly decompression
- Example#681 - RAR extension filesystem extraction example
- Example#682 - Estilo orientado à objeto
- Example#683 - Estilo procedural
- Example#684 - Estilo orientado à objeto
- Example#685 - Estilo procedural
- Example#686 - Estilo orientado à objeto
- Example#687 - Estilo procedural
- Example#688 - Estilo orientado à objeto
- Example#689 - Estilo procedural
- Example#690 - Estilo orientado à objeto
- Example#691 - Estilo procedural
- Example#692 - Estilo orientado à objeto
- Example#693 - Estilo procedural
- Example#694 - Estilo orientado à objeto
- Example#695 - Estilo procedural
- Example#696 - Volume Callback
- Example#697 - Estilo orientado à objeto
- Example#698 - Estilo procedural
- Example#699 - RarArchive::__toString example
- Example#700 - RarEntry::extract example
- Example#701 - How to extract all files in archive:
- Example#702 - RarEntry::getAttr example
- Example#703 - RarEntry::getHostOs example (version >= 2.0.0)
- Example#704 - RarEntry::getHostOs example (version <= 1.0.0)
- Example#705 - RarEntry::getMethod example
- Example#706 - RarEntry::getName example
- Example#707 - RarEntry::getPackedSize example
- Example#708 - RarEntry::getStream example
- Example#709 - RarEntry::getUnpackedSize example
- Example#710 - RarEntry::getVersion example
- Example#711 - RarException::isUsingExceptions example
- Example#712 - RarException::setUsingExceptions example
- Example#713 - Criando um arquivo Zip
- Example#714 - Exibindo detalhes dos arquivos e listando-os
- Example#715 - Zip stream wrapper, lendo um OpenOffice meta info
- Example#716 - Exemplo de uso
- Example#717 - Pequeno Exemplo da Zlib
- Example#718 - gzclose example
- Example#719 - Exemplo gzcompress
- Example#720 - Exemplo gzdeflate
- Example#721 - Criando um arquivo gzip
- Example#722 - gzeof example
- Example#723 - Exemplo gzfile
- Example#724 - Exemplo gzgetc
- Example#725 - gzgets example
- Example#726 - Exemplo gzgetss
- Example#727 - Exemplo gzinflate
- Example#728 - Exemplo gzopen
- Example#729 - Exemplo da gzread
- Example#730 - Exemplo da gzseek
- Example#731 - Exemplo da gzwrite
- Example#732 - Exemplo da CrackLib
- Example#733 - hash_algos example
- Example#734 - hash_copy example
- Example#735 - Using hash_file
- Example#736 - hash_final example
- Example#737 - hash_hmac_file example
- Example#738 - hash_hmac example
- Example#739 - Incremental hashing example
- Example#740 - hash_pbkdf2 example, basic usage
- Example#741 - hash_update_stream example
- Example#742 - A hash example
- Example#743 - Encrypt an input value with TripleDES
under 2.2.x in ECB mode
- Example#744 - Encrypt an input value with TripleDES under 2.4.x and higher in ECB mode
- Example#745 - mcrypt_create_iv Example
- Example#746 - mcrypt_enc_get_algorithms_name example
- Example#747 - mcrypt_enc_get_modes_name example
- Example#748 - mcrypt_enc_get_supported_key_sizes example
- Example#749 - mcrypt_encrypt Example
- Example#750 - mcrypt_get_block_size example
- Example#751 - mcrypt_get_cipher_name Example
- Example#752 - mcrypt_get_iv_size Example
- Example#753 - mcrypt_get_key_size Example
- Example#754 - mcrypt_list_algorithms Example
- Example#755 - mcrypt_list_modes Example
- Example#756 - mcrypt_module_open Examples
- Example#757 - Using mcrypt_module_open in encryption
- Example#758 - mcrypt_module_self_test example
- Example#759 - mdecrypt_generic Example
- Example#760 - Calcula o MD5 digest e hmac e imprimi como hex
- Example#761 - Listando todas as hashes
- Example#762 - mhash_get_block_size Example
- Example#763 - Exemplo do mhash_get_hash_name
- Example#764 - openssl_cipher_iv_length example
- Example#765 - Creating a self-signed-certificate
- Example#766 - openssl_csr_sign example - signing a
CSR (how to implement your own CA)
- Example#767 - openssl_error_string example
- Example#768 - openssl_get_cipher_methods example
- Example#769 - openssl_get_md_methods example
- Example#770 - openssl_open example
- Example#771 - openssl_pkcs7_decrypt example
- Example#772 - openssl_pkcs7_encrypt example
- Example#773 - openssl_pkcs7_sign example
- Example#774 - openssl_random_pseudo_bytes example
- Example#775 - openssl_seal example
- Example#776 - openssl_sign example
- Example#777 - openssl_verify example
- Example#778 - DBA example
- Example#779 - Traversing a database
- Example#780 - dba_handlers Example
- Example#781 - dbx_close exemplo
- Example#782 - Exemplo da dbx_compare
- Example#783 - dbx_connect exemplo
- Example#784 - Exemplo da dbx_error
- Example#785 - Exemplo da dbx_escape_string
- Example#786 - Como tratar o valor retornado
- Example#787 - lista cada nome e tipo de campo
- Example#788 - colocando o conteúdo da propriedade data em uma tabela HTML
- Example#789 - Como tratar requisições "UNBUFFERED"
- Example#790 - Como manipular o valor retornado
- Example#791 - Exemplo da dbx_sort
- Example#792 - Exemplo odbc_fetch_into pré 4.0.6
- Example#793 - Exemplo odbc_fetch_into 4.0.6
- Example#794 - Exemplo odbc_fetch_into 4.2.0
- Example#795 - odbc_next_result
- Example#796 - Exemplos ODBC Setoption
- Example#797 - using PDO::ATTR_DRIVER_NAME
- Example#798 - Connecting to MySQL
- Example#799 - Handling connection errors
- Example#800 - Closing a connection
- Example#801 - Persistent connections
- Example#802 - Executing a batch in a transaction
- Example#803 - Repeated inserts using prepared statements
- Example#804 - Repeated inserts using prepared statements
- Example#805 - Fetching data using prepared statements
- Example#806 - Calling a stored procedure with an output parameter
- Example#807 - Calling a stored procedure with an input/output parameter
- Example#808 - Invalid use of placeholder
- Example#809 - Create a PDO instance and set the error mode
- Example#810 - Displaying an image from a database
- Example#811 - Inserting an image into a database
- Example#812 - Inserting an image into a database: Oracle
- Example#813 - Roll back a transaction
- Example#814 - Committing a basic transaction
- Example#815 - Committing a DDL transaction
- Example#816 - Create a PDO instance via driver invocation
- Example#817 - Create a PDO instance via URI invocation
- Example#818 - Create a PDO instance using an alias
- Example#819 - Retrieving an SQLSTATE code
- Example#820 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
- Example#821 - Issuing a DELETE statement
- Example#822 - Retrieving database connection attributes
- Example#823 - A PDO::getAvailableDrivers example
- Example#824 - Prepare an SQL statement with named parameters
- Example#825 - Prepare an SQL statement with question mark parameters
- Example#826 - Demonstrate PDO::query
- Example#827 - Quoting a normal string
- Example#828 - Quoting a dangerous string
- Example#829 - Quoting a complex string
- Example#830 - Roll back a transaction
- Example#831 - Binding result set output to PHP variables
- Example#832 - Execute a prepared statement with named placeholders
- Example#833 - Execute a prepared statement with question mark placeholders
- Example#834 - Call a stored procedure with an INOUT parameter
- Example#835 - Execute a prepared statement with named placeholders
- Example#836 - Execute a prepared statement with question mark placeholders
- Example#837 - A PDOStatement::closeCursor example
- Example#838 - Counting columns
- Example#839 - PDOStatement::debugDumpParams example with named parameters
- Example#840 - PDOStatement::debugDumpParams example with unnamed parameters
- Example#841 - Retrieving an SQLSTATE code
- Example#842 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
- Example#843 - Execute a prepared statement with bound variables
- Example#844 - Execute a prepared statement with an array of insert values (named parameters)
- Example#845 - Execute a prepared statement with an array of insert values (placeholders)
- Example#846 - Execute a prepared statement with question mark placeholders
- Example#847 - Fetching rows using different fetch styles
- Example#848 - Fetching rows with a scrollable cursor
- Example#849 - Fetch all remaining rows in a result set
- Example#850 - Fetching all values of a single column from a result set
- Example#851 - Grouping all values by a single column
- Example#852 - Instantiating a class for each result
- Example#853 - Calling a function for each result
- Example#854 - Return first column of the next row
- Example#855 - Retrieving column metadata
- Example#856 - Fetching multiple rowsets returned from a stored procedure
- Example#857 - Return the number of deleted rows
- Example#858 - Counting rows returned by a SELECT statement
- Example#859 - Setting the fetch mode
- Example#860 - Insert LOBs in CUBRID PDO
- Example#861 - Fetch LOBs in CUBRID PDO
- Example#862 - PDO_CUBRID DSN examples
- Example#863 - A PDO::cubrid_schema example
- Example#864 - PDO_DBLIB DSN examples
- Example#865 - PDO_FIREBIRD DSN examples
- Example#866 - PDO_IBM DSN example using db2cli.ini
- Example#867 - PDO_IBM DSN example using a connection string
- Example#868 - PDO_INFORMIX DSN example using odbc.ini
- Example#869 - PDO_INFORMIX DSN example using a connection string
- Example#870 - Forçando queries para ser bufferizadas no mysql
- Example#871 - PDO_MYSQL DSN examples
- Example#872 - PDO_SQLSRV DSN examples
- Example#873 - PDO_OCI DSN examples
- Example#874 - PDO_ODBC DSN example (ODBC driver manager)
- Example#875 - PDO_ODBC DSN example (IBM DB2 uncataloged connection)
- Example#876 - PDO_ODBC DSN example (Microsoft Access uncataloged connection)
- Example#877 - PDO_PGSQL DSN examples
- Example#878 - A PDO::pgsqlLOBCreate example
- Example#879 - A PDO::pgsqlLOBOpen example
- Example#880 - A PDO::pgsqlLOBUnlink example
- Example#881 - PDO_SQLITE DSN examples
- Example#882 - max_length aggregation function example
- Example#883 - PDO::sqliteCreateFunction example
- Example#884 - DSN examples for PDO_4D
- Example#885 - Basic example with PDO_4D
- Example#886 - Accessing 4D language from pdo_4d
- Example#887 - Escaping 4D table names
- Example#888 - Example of Data Retrieval
- Example#889 - Example of Data Insertion
- Example#890 - cubrid_bind example
- Example#891 - cubrid_bind BLOB/CLOB example
- Example#892 - cubrid_bind BLOB/CLOB example
- Example#893 - cubrid_close_prepare example
- Example#894 - cubrid_close_request example
- Example#895 - cubrid_col_get example
- Example#896 - cubrid_col_size example
- Example#897 - cubrid_column_names example
- Example#898 - cubrid_column_types example
- Example#899 - cubrid_commit example
- Example#900 - cubrid_connect_with_url url without properties example
- Example#901 - cubrid_connect_with_url url with properties example
- Example#902 - cubrid_connect example
- Example#903 - cubrid_current_oid example
- Example#904 - cubrid_disconnect example
- Example#905 - cubrid_drop example
- Example#906 - cubrid_error_code_facility example
- Example#907 - cubrid_error_code example
- Example#908 - cubrid_error_msg example
- Example#909 - cubrid_execute example
- Example#910 - cubrid_fetch example
- Example#911 - cubrid_free_result example
- Example#912 - cubrid_get_charset example
- Example#913 - cubrid_get_class_name example
- Example#914 - cubrid_get_client_info example
- Example#915 - cubrid_get_db_parameter example
- Example#916 - cubrid_get_query_timeout example
- Example#917 - cubrid_get_server_info example
- Example#918 - cubrid_get example
- Example#919 - cubrid_insert_id example
- Example#920 - cubrid_is_instance example
- Example#921 - cubrid_lob_close example
- Example#922 - cubrid_lob_export example
- Example#923 - cubrid_lob_get example
- Example#924 - cubrid_lob_send example
- Example#925 - cubrid_lob_size example
- Example#926 - cubrid_lob2_bind example
- Example#927 - cubrid_lob2_export example
- Example#928 - cubrid_lob2_export example
- Example#929 - cubrid_lob2_read example 1
- Example#930 - cubrid_lob2_read example 2
- Example#931 - cubrid_lob2_seek64 example
- Example#932 - cubrid_lob2_seek example
- Example#933 - cubrid_lob2_write example 1
- Example#934 - cubrid_lob2_write example 2
- Example#935 - cubrid_lock_read example
- Example#936 - cubrid_lock_write example
- Example#937 - cubrid_move_cursor example
- Example#938 - cubrid_next_result example
- Example#939 - cubrid_num_cols example
- Example#940 - cubrid_num_rows example
- Example#941 - cubrid_connect_with_url url without properties example
- Example#942 - cubrid_connect_with_url url with properties example
- Example#943 - cubrid_connect example
- Example#944 - cubrid_prepare example
- Example#945 - cubrid_put example
- Example#946 - cubrid_rollback example
- Example#947 - cubrid_schema example
- Example#948 - cubrid_seq_drop example
- Example#949 - cubrid_seq_insert example
- Example#950 - cubrid_seq_put example
- Example#951 - cubrid_set_add example
- Example#952 - cubrid_get_db_parameter example
- Example#953 - cubrid_set_drop example
- Example#954 - cubrid_version example
- Example#955 - cubrid_affected_rows example
- Example#956 - cubrid_client_encoding example
- Example#957 - cubrid_close example
- Example#958 - cubrid_data_seek example
- Example#959 - cubrid_db_name example
- Example#960 - cubrid_errno example
- Example#961 - cubrid_error example
- Example#962 - cubrid_fetch_array example
- Example#963 - cubrid_fetch_assoc example
- Example#964 - cubrid_fetch_field example
- Example#965 - cubrid_fetch_lengths example
- Example#966 - cubrid_fetch_object example
- Example#967 - cubrid_fetch_row example
- Example#968 - cubrid_field_flags example
- Example#969 - cubrid_field_len example
- Example#970 - cubrid_field_name example
- Example#971 - cubrid_field_seek example
- Example#972 - cubrid_field_table example
- Example#973 - cubrid_field_type example
- Example#974 - cubrid_list_dbs example
- Example#975 - cubrid_num_fields example
- Example#976 - cubrid_ping example
- Example#977 - Invalid Query
- Example#978 - Valid Query
- Example#979 - cubrid_real_escape_string example
- Example#980 - cubrid_result example
- Example#981 - cubrid_unbuffered_query example
- Example#982 - cubrid_load_from_glo example
- Example#983 - cubrid_new_glo example
- Example#984 - cubrid_save_to_glo example
- Example#985 - cubrid_send_glo example
- Example#986 - Inserindo um registro num banco de dados dBase
- Example#987 - Fechando um banco de dados dBase
- Example#988 - Criando um banco de dados dBase
- Example#989 - Mostrando informações do banco de dados de um arquivo dBase
- Example#990 - Listando todos os membros registrados no banco de dados
- Example#991 - Exemplo dbase_numfields
- Example#992 - Lendo todos os registros de um banco de dados
- Example#993 - Abrindo um banco de dados dBase
- Example#994 - Limpando um banco de dados dBase
- Example#995 - Atualizando um registro no banco de dados
- Example#996 - Exemplo da ibase_blob_get
- Example#997 - Exemplo da ibase_blob_import
- Example#998 - Exemplo ibase_connect
- Example#999 - Exemplo da ibase_execute
- Example#1000 - ibase_fetch_object example
- Example#1001 - Exemplo da ibase_field_info
- Example#1002 - Exemplo da ibase_name_result
- Example#1003 - Exemplo da ibase_num_fields
- Example#1004 - Exemplo da ibase_query
- Example#1005 - Exemplo da ibase_set_event_handler
- Example#1006 - Exemplo da ibase_timefmt
- Example#1007 - fbsql_close example
- Example#1008 - fbsql_connect example
- Example#1009 - fbsql_create_blob example
- Example#1010 - fbsql_create_clob example
- Example#1011 - fbsql_create_db example
- Example#1012 - fbsql_data_seek example
- Example#1013 - fbsql_create_clob example
- Example#1014 - fbsql_errno Example
- Example#1015 - fbsql_error Example
- Example#1016 - fbsql_fetch_array example
- Example#1017 - fbsql_fetch_assoc example
- Example#1018 - fbsql_fetch_field example
- Example#1019 - fbsql_fetch_object example
- Example#1020 - fbsql_field_name example
- Example#1021 - fbsql_field_type example
- Example#1022 - fbsql_list_dbs example
- Example#1023 - fbsql_list_fields example
- Example#1024 - fbsql_next_result example
- Example#1025 - fbsql_num_rows example
- Example#1026 - fbsql_query example
- Example#1027 - fbsql_query example
- Example#1028 - fbsql_read_blob example
- Example#1029 - fbsql_read_clob example
- Example#1030 - fbsql_table_name example
- Example#1031 - Retrieving the AUTOCOMMIT value for a connection
- Example#1032 - Setting the AUTOCOMMIT value for a connection
- Example#1033 - Binding PHP variables to a prepared statement
- Example#1034 - Calling stored procedures with IN and OUT parameters
- Example#1035 - Inserting a binary large object (BLOB) directly from a file
- Example#1036 - A db2_client_info example
- Example#1037 - Closing a connection
- Example#1038 - Retrieving an SQLSTATE value for a failed connection attempt
- Example#1039 - Retrieving the error message returned by a failed connection attempt
- Example#1040 - Creating a cataloged connection
- Example#1041 - Creating an uncataloged connection
- Example#1042 - Creating a connection with autocommit off by default
- Example#1043 - i5/OS best performance
- Example#1044 - Using trusted context
- Example#1045 - A db2_escape_string example
- Example#1046 - Creating a table with db2_exec
- Example#1047 - Executing a SELECT statement with a scrollable cursor
- Example#1048 - Returning XML data as an SQL ResultSet
- Example#1049 - Performing a "JOIN" with XML data
- Example#1050 - Returning SQL data as part of a larger XML document
- Example#1051 - Preparing and executing an SQL statement with parameter markers
- Example#1052 - Calling a stored procedure with an OUT parameter
- Example#1053 - Returning XML data as an SQL ResultSet
- Example#1054 - Performing a "JOIN" with XML data
- Example#1055 - Returning SQL data as part of a larger XML document
- Example#1056 - Iterating through a forward-only cursor
- Example#1057 - Retrieving specific rows with db2_fetch_array
from a scrollable cursor
- Example#1058 - Iterating through a forward-only cursor
- Example#1059 - Retrieving specific rows with db2_fetch_assoc
from a scrollable cursor
- Example#1060 - Iterating through a forward-only cursor
- Example#1061 - Retrieving specific rows with db2_fetch_both
from a scrollable cursor
- Example#1062 - A db2_fetch_object example
- Example#1063 - Iterating through a result set
- Example#1064 - i5/OS recommended alternatives to db2_fetch_row/db2_result
- Example#1065 - Setting and retrieving parameters through a connection resource
- Example#1066 - A db2_last_insert_id example
- Example#1067 - Iterating through different types of data
- Example#1068 - Calling a stored procedure that returns multiple result sets
- Example#1069 - Retrieving the number of fields in a result set
- Example#1070 - Closing a persistent connection
- Example#1071 - A db2_pconnect example
- Example#1072 - Using trusted context
- Example#1073 - Preparing and executing an SQL statement with parameter markers
- Example#1074 - A db2_result example
- Example#1075 - Rolling back a DELETE statement
- Example#1076 - A db2_server_info example
- Example#1077 - Setting one parameter with a connection resource
- Example#1078 - Setting multiple parameters with a connection resource
- Example#1079 - Setting multiple parameters with an invalid key
- Example#1080 - Setting multiple parameters with an invalid value
- Example#1081 - Setting multiple parameters with a connection resource and the wrong type
- Example#1082 - Setting multiple parameters with the wrong resource
- Example#1083 - Putting it all together
- Example#1084 - i5/OS cursors are read-only
- Example#1085 - Informix affected rows
- Example#1086 - Closing a Informix connection
- Example#1087 - Connect to a Informix database
- Example#1088 - ifx_do Example
- Example#1089 - ifx_errormsg example
- Example#1090 - Informix fetch rows
- Example#1091 - Informix SQL fieldproperties
- Example#1092 - Fieldnames and SQL fieldtypes
- Example#1093 - Retrieve Informix sqlca.sqlerrd[x] values
- Example#1094 - Informix results as HTML table
- Example#1095 - ifx_num_fields Example
- Example#1096 - Show all rows of the "orders" table as a HTML table
- Example#1097 - Insert some values into the "catalog" table
- Example#1098 - Example usage of PassEnv for Ingres
- Example#1099 - Simple Ingres Example
- Example#1100 - ingres_charset - Get the installation character set
- Example#1101 - Open a connection to an Ingres database
- Example#1102 - Get cursor name for a query resource
- Example#1103 - Get the last Ingres error number generated
- Example#1104 - Get a message for the last error generated
- Example#1105 - Get the last SQLSTATE error code generated
- Example#1106 - Escape special characters for use in a query
- Example#1107 - Fetch a row of result into an array
- Example#1108 - Fetch a row into an associative array
- Example#1109 - Fetch a row into an object
- Example#1110 - Get the return value from a procedure call
- Example#1111 - Fetch a row of result into an enumerated array
- Example#1112 - Free a result resource
- Example#1113 - Send a simple select
- Example#1114 - Passing query parameters to ingres_query
- Example#1115 - Inserting a BLOB with parameter types
- Example#1116 - Position the cursor on the 3rd row
- Example#1117 - Set date_format to ISO4
- Example#1118 - Set timezone to HONG-KONG
- Example#1119 - Issue a simple un-buffered select
- Example#1120 - Passing query parameters to ingres_unbuffered_query
- Example#1121 - Inserting a BLOB with parameter types
- Example#1122 - MaxDB extension overview example
- Example#1123 - Example for use of SELECT INTO statements
- Example#1124 - Example fore using database procedures
- Example#1125 - Estilo orientado à objeto
- Example#1126 - Estilo procedural
- Example#1127 - Estilo orientado à objeto
- Example#1128 - Estilo procedural
- Example#1129 - Estilo orientado à objeto
- Example#1130 - Estilo procedural
- Example#1131 - Estilo orientado à objeto
- Example#1132 - Estilo procedural
- Example#1133 - Estilo orientado à objeto
- Example#1134 - Estilo procedural
- Example#1135 - maxdb_connect_errno sample
- Example#1136 - maxdb_connect_error sample
- Example#1137 - Estilo orientado à objeto
- Example#1138 - Estilo procedural
- Example#1139 - Estilo orientado à objeto
- Example#1140 - Estilo procedural
- Example#1141 - Estilo procedural
- Example#1142 - Estilo orientado à objeto
- Example#1143 - Estilo procedural
- Example#1144 - Estilo orientado à objeto
- Example#1145 - Estilo procedural
- Example#1146 - Estilo orientado à objeto
- Example#1147 - Estilo procedural
- Example#1148 - Estilo orientado à objeto
- Example#1149 - Estilo procedural
- Example#1150 - Estilo orientado à objeto
- Example#1151 - Estilo procedural
- Example#1152 - Estilo orientado à objeto
- Example#1153 - Estilo procedural
- Example#1154 - Estilo orientado à objeto
- Example#1155 - Estilo procedural
- Example#1156 - Estilo orientado à objeto
- Example#1157 - Estilo procedural
- Example#1158 - Estilo orientado à objeto
- Example#1159 - Estilo procedural
- Example#1160 - Estilo orientado à objeto
- Example#1161 - Estilo procedural
- Example#1162 - Estilo orientado à objeto
- Example#1163 - Estilo procedural
- Example#1164 - Estilo orientado à objeto
- Example#1165 - Estilo procedural
- Example#1166 - Estilo orientado à objeto
- Example#1167 - Estilo procedural
- Example#1168 - maxdb_get_client_info
- Example#1169 - maxdb_get_client_version
- Example#1170 - Estilo orientado à objeto
- Example#1171 - Estilo procedural
- Example#1172 - Estilo orientado à objeto
- Example#1173 - Estilo procedural
- Example#1174 - Estilo orientado à objeto
- Example#1175 - Estilo procedural
- Example#1176 - Estilo orientado à objeto
- Example#1177 - Estilo procedural
- Example#1178 - Estilo orientado à objeto
- Example#1179 - Estilo procedural
- Example#1180 - Estilo orientado à objeto
- Example#1181 - Estilo procedural
- Example#1182 - Estilo orientado à objeto
- Example#1183 - Estilo procedural
- Example#1184 - Estilo orientado à objeto
- Example#1185 - Estilo procedural
- Example#1186 - Estilo orientado à objeto
- Example#1187 - Estilo procedural
- Example#1188 - Estilo orientado à objeto
- Example#1189 - Estilo procedural
- Example#1190 - Estilo orientado à objeto
- Example#1191 - Estilo procedural
- Example#1192 - Estilo orientado à objeto
- Example#1193 - Estilo procedural
- Example#1194 - Estilo orientado à objeto
- Example#1195 - Estilo procedural
- Example#1196 - Estilo orientado à objeto
- Example#1197 - Estilo procedural
- Example#1198 - Estilo orientado à objeto
- Example#1199 - Estilo procedural
- Example#1200 - Estilo procedural
- Example#1201 - Estilo orientado à objeto
- Example#1202 - Estilo procedural
- Example#1203 - Estilo orientado à objeto
- Example#1204 - Estilo procedural
- Example#1205 - Estilo orientado à objeto
- Example#1206 - Estilo procedural
- Example#1207 - Estilo orientado à objeto
- Example#1208 - Estilo procedural
- Example#1209 - Estilo orientado à objeto
- Example#1210 - Estilo procedural
- Example#1211 - Estilo orientado à objeto
- Example#1212 - Estilo procedural
- Example#1213 - Estilo procedural (SELECT INTO)
- Example#1214 - Estilo procedural (DB procedure)
- Example#1215 - Estilo orientado à objeto (extended syntax)
- Example#1216 - Estilo orientado à objeto
- Example#1217 - Estilo procedural
- Example#1218 - Estilo orientado à objeto
- Example#1219 - Estilo procedural
- Example#1220 - Estilo orientado à objeto
- Example#1221 - Estilo procedural
- Example#1222 - Estilo orientado à objeto
- Example#1223 - Estilo procedural
- Example#1224 - Estilo orientado à objeto
- Example#1225 - Estilo procedural
- Example#1226 - Estilo orientado à objeto
- Example#1227 - Estilo procedural
- Example#1228 - Estilo orientado à objeto
- Example#1229 - Estilo procedural
- Example#1230 - Estilo orientado à objeto
- Example#1231 - Estilo procedural
- Example#1232 - Estilo orientado à objeto
- Example#1233 - Estilo procedural
- Example#1234 - Estilo orientado à objeto
- Example#1235 - Estilo procedural
- Example#1236 - Estilo orientado à objeto
- Example#1237 - Estilo procedural
- Example#1238 - Estilo orientado à objeto
- Example#1239 - Estilo procedural
- Example#1240 - Estilo orientado à objeto
- Example#1241 - Estilo procedural
- Example#1242 - Estilo orientado à objeto
- Example#1243 - Estilo procedural
- Example#1244 - Estilo orientado à objeto
- Example#1245 - Estilo procedural
- Example#1246 - Mongo::__construct replica set example
- Example#1247 - Connecting to a domain socket
- Example#1248 - Mongo::__construct authentication example
- Example#1249 - Changing pool size
- Example#1250 - Mongo::listDBs example
- Example#1251 - Mongo::selectCollection example
- Example#1252 - Mongo::setPoolSize example
- Example#1253 - MongoDB::command "distinct" example
- Example#1254 - MongoDB::command "distinct" example
- Example#1255 - MongoDB::command MapReduce example
- Example#1256 - MongoDB::createCollection capped collection example
- Example#1257 - MongoDB::createDBRef example
- Example#1258 - MongoDB::createDBRef example
- Example#1259 - MongoDB::drop example
- Example#1260 - Simple MongoDB::execute example
- Example#1261 - Parameter MongoDB::execute example
- Example#1262 - Scope example
- Example#1263 - MongoDB::getDBRef example
- Example#1264 - MongoDB::getGridFS example
- Example#1265 - MongoDB::lastError NULL error example
- Example#1266 - MongoDB::lastError duplicate key example
- Example#1267 - MongoDB::listCollections example
- Example#1268 - MongoDB::repair example
- Example#1269 - MongoCollection::batchInsert example
- Example#1270 - MongoCollection::batchInsert example with
ignoring errors
- Example#1271 - MongoCollection::count example
- Example#1272 - MongoCollection::createDBRef example
- Example#1273 - MongoCollection::deleteIndex example
- Example#1274 - MongoCollection::deleteIndexes example
- Example#1275 - MongoCollection::distinct example
- Example#1276 - MongoCollection::distinct example on a embedded document
- Example#1277 - MongoCollection::drop example
- Example#1278 - MongoCollection::ensureIndex example
- Example#1279 - Drop duplicates example
- Example#1280 - Geospatial Indexing
- Example#1281 - MongoCollection::find example
- Example#1282 - MongoCollection::find example using $where
- Example#1283 - MongoCollection::find example using $in
- Example#1284 - Getting results as an array
- Example#1285 - MongoCollection::findOne document by its id.
- Example#1286 - MongoCollection::findOne document by some condition.
- Example#1287 - MongoCollection::getDBRef example
- Example#1288 - MongoCollection::find example
- Example#1289 - MongoCollection::getName example
- Example#1290 - MongoCollection::group example
- Example#1291 - MongoCollection::group example
- Example#1292 - Passing a keys function
- Example#1293 - MongoCollection::insert _id example
- Example#1294 - MongoCollection::insert safe example
- Example#1295 - MongoCollection::remove with justOne example
- Example#1296 - MongoCollection::save example
- Example#1297 - MongoCollection::toIndexString example
- Example#1298 - MongoCollection::__toString example
- Example#1299 - MongoCollection::update
- Example#1300 - MongoCollection::update upsert example
- Example#1301 - MongoCollection::update multiple example
- Example#1302 - MongoCursor::addOption example
- Example#1303 - MongoCursor::awaitData example
- Example#1304 - Mongo::batchSize and combinations with
MongoCursor::limit
- Example#1305 - MongoCursor::count example
- Example#1306 - MongoCursor::doQuery example
- Example#1307 - MongoCursor::explain example
- Example#1308 - MongoCursor::info example
- Example#1309 - MongoCursor::setFlag example
- Example#1310 - MongoCursor::slaveOkay example
- Example#1311 - MongoCursor::sort example
- Example#1312 - MongoCursor::tailable example
- Example#1313 - MongoCursor::timeout example
- Example#1314 - MongoId::__construct example
- Example#1315 - Parameter example
- Example#1316 - MongoId::__toString example
- Example#1317 - MongoCode::__construct example
- Example#1318 - Using MongoCode with $where
- Example#1319 - MongoCode::__toString example
- Example#1320 - MongoDate::__construct example
- Example#1321 - MongoRegex::__construct example
- Example#1322 - MongoRegex::__toString example
- Example#1323 - MongoDBRef::create example
- Example#1324 - MongoCollection::createDBRef example
- Example#1325 - MongoGridFS::findOne example
- Example#1326 - MongoGridFSFile::getBytes example
- Example#1327 - MongoGridFSFile::getResource example
- Example#1328 - MongoGridFSFile::write example
- Example#1329 - Changing pool size
- Example#1330 - Mongo::setPoolSize example
- Example#1331 - Exemplo de uso da mSQL
- Example#1332 - Exemplo msql_query
- Example#1333 - Exemplo mssql_fetch_batch
- Example#1334 - Exemplo da mssql_next_result
- Example#1335 - Exemplo mssql_select_db
- Example#1336 - Comparing the three MySQL APIs
- Example#1337 - Configure commands for using mysqlnd or libmysql
- Example#1338 - Unbuffered query example: mysqli
- Example#1339 - Unbuffered query example: pdo_mysql
- Example#1340 - Unbuffered query example: mysql
- Example#1341 - Problems with setting the character set with SQL
- Example#1342 - Setting the character set example: mysqli
- Example#1343 - Setting the character set example: pdo_mysql
- Example#1344 - Setting the character set example: mysql
- Example#1345 - Exemplo de visão geral da extensão MySQL
- Example#1346 - Exemplo mysql_affected_rows
- Example#1347 - Exemplo de mysql_affected_rows usando transações
- Example#1348 - Exemplo mysql_client_encoding
- Example#1349 - Exemplo mysql_close
- Example#1350 - Exemplo mysql_connect
- Example#1351 - Exemplo mysql_connect usando a a sintaxe servidor:porta
- Example#1352 - Exemplo mysql_connect usando a sintaxe ":/caminho/para/socket"
- Example#1353 - Exemplo alternativo de mysql_create_db
- Example#1354 - Exemplo mysql_data_seek
- Example#1355 - Exemplo mysql_db_name
- Example#1356 - Exemplo alternativo mysql_db_query
- Example#1357 - Exemplo alternativo de mysql_drop_db
- Example#1358 - Exemplo mysql_errno
- Example#1359 - Exemplo mysql_error
- Example#1360 - mysql_escape_string example
- Example#1361 - Consulta com nomes de campos duplicados usando alias
- Example#1362 - mysql_fetch_array com MYSQL_NUM
- Example#1363 - mysql_fetch_array com MYSQL_ASSOC
- Example#1364 - mysql_fetch_array com MYSQL_BOTH
- Example#1365 - Um exemplo expandido de mysql_fetch_assoc
- Example#1366 - Exemplo mysql_fetch_field
- Example#1367 - Um exemplo mysql_fetch_lengths
- Example#1368 - Exemplo mysql_fetch_object
- Example#1369 - Exemplo mysql_fetch_object
- Example#1370 - Obtendo uma linha com mysql_fetch_row
- Example#1371 - Um exemplo de mysql_field_flags
- Example#1372 - mysql_field_len example
- Example#1373 - Exemplo mysql_field_name
- Example#1374 - Um exemplo mysql_field_table
- Example#1375 - Exemplo mysql_field_type
- Example#1376 - Um exemplo mysql_free_result
- Example#1377 - Exemplo mysql_get_client_info
- Example#1378 - Exemplo mysql_get_host_info
- Example#1379 - Exemplo mysql_get_proto_info
- Example#1380 - Exemplo mysql_get_server_info
- Example#1381 - Comandos MySQL relevantes
- Example#1382 - Exemplo mysql_insert_id
- Example#1383 - Exemplo mysql_list_dbs
- Example#1384 - Alternativa para o obsoleto mysql_list_fields
- Example#1385 - Exemplo mysql_list_processes
- Example#1386 - Exemplo alternativo de mysql_list_tables
- Example#1387 - Exemplo mysql_num_fields
- Example#1388 - Exemplo mysql_num_rows
- Example#1389 - Exemplo mysql_ping
- Example#1390 - Consulta Inválida
- Example#1391 - Consulta válida
- Example#1392 - Exemplo mysql_real_escape_string
- Example#1393 - Exemplo mysql_result
- Example#1394 - Exemplo mysql_select_db
- Example#1395 - Exemplo mysql_stat
- Example#1396 - Exemplo mysql_tablename
- Example#1397 - Exemplo mysql_thread_id
- Example#1398 - Estilo orientado a objeto
- Example#1399 - Estilo de procedimento
- Example#1400 - Estilo orientado a objeto
- Example#1401 - Estilo de procedimento
- Example#1402 - Estilo orientado a objetos
- Example#1403 - Estilo de procedimentos
- Example#1404 - Estilo orientado a objeto
- Example#1405 - Estilo de procedimento
- Example#1406 - mysqli_get_client_info
- Example#1407 - mysqli_get_client_version
- Example#1408 - Estilo orientado a objeto
- Example#1409 - Estilo de procedimento
- Example#1410 - mysqli_connect_errno sample
- Example#1411 - mysqli_connect_error sample
- Example#1412 - mysqli::__construct example
- Example#1413 - Gerando um arquivo de Trace
- Example#1414 - Estilo orientado a objeto
- Example#1415 - Estilo de procedimento
- Example#1416 - $mysqli->error_list example
- Example#1417 - Estilo orientado a objeto
- Example#1418 - Estilo de procedimento
- Example#1419 - Estilo orientado a objeto
- Example#1420 - Estilo de procedimento
- Example#1421 - mysqli::get_charset example
- Example#1422 - mysqli_get_client_info
- Example#1423 - A mysqli_get_client_stats example
- Example#1424 - mysqli_get_client_version
- Example#1425 - A mysqli_get_connection_stats example
- Example#1426 - Estilo orientado a objeto
- Example#1427 - Estilo de procedimento
- Example#1428 - Estilo orientado a objeto
- Example#1429 - Estilo de procedimento
- Example#1430 - Estilo orientado a objeto
- Example#1431 - Estilo de procedimento
- Example#1432 - Estilo orientado a objeto
- Example#1433 - Estilo de procedimento
- Example#1434 - Modo orientado a objeto
- Example#1435 - Modo procedural
- Example#1436 - Estilo orientado a objeto
- Example#1437 - Estilo de procedimento
- Example#1438 - Modo orientado a objeto
- Example#1439 - Modo procedural
- Example#1440 - Modo orientado a objeto
- Example#1441 - Modo procedural
- Example#1442 - mysqli::ping example
- Example#1443 - A mysqli_poll example
- Example#1444 - mysqli::prepare example
- Example#1445 - mysqli::query example
- Example#1446 - mysqli::real_connect example
- Example#1447 - mysqli::real_escape_string example
- Example#1448 - mysqli::rollback example
- Example#1449 - mysqli::select_db example
- Example#1450 - mysqli::set_charset example
- Example#1451 - mysqli::set_local_infile_handler example
- Example#1452 - $mysqli->sqlstate example
- Example#1453 - mysqli::stat example
- Example#1454 - $mysqli->thread_id example
- Example#1455 - mysqli::use_result example
- Example#1456 - $mysqli->warning_count example
- Example#1457 - Estilo orientado à objeto
- Example#1458 - Estilo procedural
- Example#1459 - Modo orientado a objeto
- Example#1460 - Modo procedural
- Example#1461 - Modo orientado a objeto
- Example#1462 - Modo procedural
- Example#1463 - Estilo orientado à objeto
- Example#1464 - Estilo procedural
- Example#1465 - Estilo orientado à objeto
- Example#1466 - Estilo procedural
- Example#1467 - Estilo orientado à objeto
- Example#1468 - Estilo procedural
- Example#1469 - Estilo orientado à objeto
- Example#1470 - Estilo procedural
- Example#1471 - Modo orientado a objeto
- Example#1472 - Modo procedural
- Example#1473 - Modo orientado a objeto
- Example#1474 - Modo procedural
- Example#1475 - Estilo orientado à objeto
- Example#1476 - Estilo procedural
- Example#1477 - Estilo orientado à objeto
- Example#1478 - Estilo procedural
- Example#1479 - Estilo orientado à objeto
- Example#1480 - Estilo procedural
- Example#1481 - Estilo orientado à objeto
- Example#1482 - Estilo procedural
- Example#1483 - Estilo orientado à objeto
- Example#1484 - Estilo procedural
- Example#1485 - Estilo orientado à objeto
- Example#1486 - Estilo orientado à objeto
- Example#1487 - Estilo procedural
- Example#1488 - Estilo orientado à objeto
- Example#1489 - Estilo procedural
- Example#1490 - Estilo orientado à objeto
- Example#1491 - Estilo procedural
- Example#1492 - Estilo orientado a objeto
- Example#1493 - Estilo de procedimento
- Example#1494 - Estilo orientado a objeto
- Example#1495 - Estilo de procedimento
- Example#1496 - Estilo orientado a objeto
- Example#1497 - Estilo de procedimento
- Example#1498 - Estilo orientado a objeto
- Example#1499 - Estilo de procedimento
- Example#1500 - Estilo orientado a objeto
- Example#1501 - Estilo de procedimento
- Example#1502 - Estilo orientado a objeto
- Example#1503 - Estilo de procedimento
- Example#1504 - Estilo orientado a objeto
- Example#1505 - Estilo de procedimento
- Example#1506 - Estilo orientado a objeto
- Example#1507 - Estilo de procedimento
- Example#1508 - Estilo orientado à objeto
- Example#1509 - Estilo procedural
- Example#1510 - Modo orientado a objeto
- Example#1511 - Modo procedural
- Example#1512 - Estilo orientado à objeto
- Example#1513 - Estilo procedural
- Example#1514 - Estilo orientado à objeto
- Example#1515 - Estilo procedural
- Example#1516 - A mysqli_get_cache_stats example
- Example#1517 - Estilo orientado à objeto
- Example#1518 - Enabling the plugin (php.ini)
- Example#1519 - Minimal plugin-specific configuration file (mysqlnd_ms_plugin.ini)
- Example#1520 - Recommended minimal plugin-specific config (mysqlnd_ms_plugin.ini)
- Example#1521 - Using one server as a master and as a slave (testing only!)
- Example#1522 - Plugin specific configuration file (mysqlnd_ms_plugin.ini)
- Example#1523 - Opening a load balanced connection
- Example#1524 - Executing statements
- Example#1525 - Plugin config with one slave and one master
- Example#1526 - Pitfall: connection state and SQL user variables
- Example#1527 - Plugin config with one slave and one master
- Example#1528 - SQL hints to prevent connection switches
- Example#1529 - Fighting replication lag
- Example#1530 - Table creation on a slave
- Example#1531 - Plugin config with one slave and one master
- Example#1532 - Using SQL hints for transactions
- Example#1533 - Transaction aware load balancing: trx_stickiness setting
- Example#1534 - Transaction aware
- Example#1535 - Session consistency: read your writes
- Example#1536 - Requesting session consistency
- Example#1537 - Maximum age/slave lag
- Example#1538 - Limiting slave lag
- Example#1539 - Fail over not set
- Example#1540 - No slave within time limit
- Example#1541 - Create counter table on master
- Example#1542 - Plugin config: SQL for client-side GTID injection
- Example#1543 - Transparent global transaction ID injection
- Example#1544 - Plugin config: SQL for fetching GTID
- Example#1545 - Obtaining GTID after injection
- Example#1546 - Plugin config: Checking for a certain GTID
- Example#1547 - Session consistency service level and GTID combined
- Example#1548 - Plugin config: using MySQL 5.6.5-m8 built-in GTID feature
- Example#1549 - Recap: quality of service to request read your writes
- Example#1550 - Plugin config: no special entries for caching
- Example#1551 - Caching a slave request
- Example#1552 - Read your writes and caching combined
- Example#1553 - Manual failover, automatic optional
- Example#1554 - Manual failover
- Example#1555 - Provoking a connection error
- Example#1556 - Connection error on query execution
- Example#1557 - Provoking a connection error
- Example#1558 - Most basic failover
- Example#1559 - Converting a PHP array (hash) into JSON format
- Example#1560 - Using section names example
- Example#1561 - List of anonymous slaves
- Example#1562 - Master list using symbolic names
- Example#1563 - Keywords to configure a server
- Example#1564 - New roundrobin filter, old functionality
- Example#1565 - The user filter replaces mysqlnd_ms_set_user_pick_server
- Example#1566 - Invalid filter sequence
- Example#1567 - Random load balancing with random filter
- Example#1568 - Random once load balancing with random filter
- Example#1569 - Referencing error
- Example#1570 - Assigning a weight for load balancing
- Example#1571 - roundrobin filter
- Example#1572 - Setting a callback
- Example#1573 - Using a callback
- Example#1574 - Returning random masters and slaves
- Example#1575 - Global limit on slave lag
- Example#1576 - Optional master failover when failing to connect to slave (PECL/mysqlnd_ms < 1.4.0)
- Example#1577 - New syntax since 1.4.0
- Example#1578 - Disabling lazy connection
- Example#1579 - String escaping on a lazy connection handle
- Example#1580 - Master on write for consistent reads
- Example#1581 - Using master to execute transactions
- Example#1582 - Using section names example
- Example#1583 - List-like syntax
- Example#1584 - Verify plugin activity in a non-threaded deployment model
- Example#1585 - Recording statistics during shutdown
- Example#1586 - Example demonstrating the usage of mysqlnd_ms constants
- Example#1587 - mysqlnd_ms_get_last_gtid example
- Example#1588 - mysqlnd_ms_get_last_used_connection example
- Example#1589 - mysqlnd_ms_get_stats example
- Example#1590 - mysqlnd_ms_match_wild example
- Example#1591 - mysqlnd_ms_query_is_select example
- Example#1592 - mysqlnd_ms_set_qos example
- Example#1593 - mysqlnd_ms_set_user_pick_server example
- Example#1594 - Enabling the plugin (php.ini)
- Example#1595 - Using the MYSQLND_QC_ENABLE_SWITCH SQL hint
- Example#1596 - Using the MYSQLND_QC_DISABLE_SWITCH SQL hint
- Example#1597 - Example showing which type of statements are not cached
- Example#1598 - Enabling caching for all statements using the mysqlnd_qc.cache_no_table ini setting
- Example#1599 - Setting the TTL with the mysqlnd_qc.ttl ini setting
- Example#1600 - Setting TTL with SQL hints
- Example#1601 - Setting a callback with mysqlnd_qc_set_is_select
- Example#1602 - Enabling the slam defense mechanism
- Example#1603 - Collecting a query trace
- Example#1604 - Setting the backtrace depth with the mysqlnd_qc.query_trace_bt_depth ini setting
- Example#1605 - Collecting statistics data with the mysqlnd_qc.time_statistics ini setting
- Example#1606 - Example mysqlnd_qc_get_cache_info usage
- Example#1607 - Example mysqlnd_qc_get_normalized_query_trace_log usage
- Example#1608 - Using a user-defined storage handler
- Example#1609 - Using SQL hint constants
- Example#1610 - Example mysqlnd_qc_set_cache_condition usage
- Example#1611 - mysqlnd_qc_get_available_handlers example
- Example#1612 - mysqlnd_qc_get_cache_info example
- Example#1613 - mysqlnd_qc_get_core_stats example
- Example#1614 - mysqlnd_qc_get_normalized_query_trace_log example
- Example#1615 - mysqlnd_qc_get_query_trace_log example
- Example#1616 - mysqlnd_qc_set_cache_condition example
- Example#1617 - mysqlnd_qc_set_is_select example
- Example#1618 - mysqlnd_qc_set_storage_handler example
- Example#1619 - Enabling the plugin (php.ini)
- Example#1620 - Pseudo-code: what a built-in class does
- Example#1621 - Installing a proxy
- Example#1622 - Proxy registration, mysqlnd_uh.enable=1
- Example#1623 - Proxy installation disabled
- Example#1624 - Connection proxy
- Example#1625 - Prepared statement proxy
- Example#1626 - Basic Monitoring
- Example#1627 - MysqlndUhConnection::changeUser example
- Example#1628 - MysqlndUhConnection::charsetName example
- Example#1629 - MysqlndUhConnection::close example
- Example#1630 - MysqlndUhConnection::connect example
- Example#1631 - MysqlndUhConnection::endPSession example
- Example#1632 - MysqlndUhConnection::escapeString example
- Example#1633 - MysqlndUhConnection::getAffectedRows example
- Example#1634 - MysqlndUhConnection::getErrorNumber example
- Example#1635 - MysqlndUhConnection::getErrorString example
- Example#1636 - MysqlndUhConnection::getFieldCount example
- Example#1637 - MysqlndUhConnection::getHostInformation example
- Example#1638 - MysqlndUhConnection::getLastInsertId example
- Example#1639 - MysqlndUhConnection::getLastMessage example
- Example#1640 - MysqlndUhConnection::getProtocolInformation example
- Example#1641 - MysqlndUhConnection::getServerInformation example
- Example#1642 - MysqlndUhConnection::getServerStatistics example
- Example#1643 - MysqlndUhConnection::getServerVersion example
- Example#1644 - MysqlndUhConnection::getSqlstate example
- Example#1645 - MysqlndUhConnection::getStatistics example
- Example#1646 - MysqlndUhConnection::getThreadId example
- Example#1647 - MysqlndUhConnection::getWarningCount example
- Example#1648 - MysqlndUhConnection::init example
- Example#1649 - MysqlndUhConnection::kill example
- Example#1650 - MysqlndUhConnection::listFields example
- Example#1651 - MysqlndUhConnection::listMethod example
- Example#1652 - MysqlndUhConnection::moreResults example
- Example#1653 - MysqlndUhConnection::nextResult example
- Example#1654 - MysqlndUhConnection::ping example
- Example#1655 - MysqlndUhConnection::query example
- Example#1656 - MysqlndUhConnection::queryReadResultsetHeader example
- Example#1657 - MysqlndUhConnection::reapQuery example
- Example#1658 - MysqlndUhConnection::refreshServer example
- Example#1659 - MysqlndUhConnection::restartPSession example
- Example#1660 - MysqlndUhConnection::selectDb example
- Example#1661 - MysqlndUhConnection::sendClose example
- Example#1662 - MysqlndUhConnection::sendQuery example
- Example#1663 - MysqlndUhConnection::serverDumpDebugInformation example
- Example#1664 - MysqlndUhConnection::setAutocommit example
- Example#1665 - MysqlndUhConnection::setCharset example
- Example#1666 - MysqlndUhConnection::setClientOption example
- Example#1667 - MysqlndUhConnection::setServerOption example
- Example#1668 - MysqlndUhConnection::simpleCommand example
- Example#1669 - MysqlndUhConnection::simpleCommandHandleResponse example
- Example#1670 - MysqlndUhConnection::sslSet example
- Example#1671 - MysqlndUhConnection::stmtInit example
- Example#1672 - MysqlndUhConnection::storeResult example
- Example#1673 - MysqlndUhConnection::txCommit example
- Example#1674 - MysqlndUhConnection::txRollback example
- Example#1675 - MysqlndUhConnection::useResult example
- Example#1676 - MysqlndUhPreparedStatement::execute example
- Example#1677 - MysqlndUhPreparedStatement::prepare example
- Example#1678 - mysqlnd_uh_convert_to_mysqlnd example
- Example#1679 - mysqlnd_uh_set_connection_proxy example
- Example#1680 - Query básica
- Example#1681 - Inserindo usando bind com variáveis
- Example#1682 - Inserindo dados em uma coluna CLOB
- Example#1683 - Usando Stored Procedures
- Example#1684 - oci_bind_array_by_name example
- Example#1685 - Inserting data with oci_bind_by_name
- Example#1686 - Binding once for multiple executions
- Example#1687 - Binding with a foreach loop
- Example#1688 - Binding in a WHERE clause
- Example#1689 - Binding with a LIKE clause
- Example#1690 - Binding with REGEXP_LIKE
- Example#1691 - Binding Multiple Values in an IN Clause
- Example#1692 - Binding a ROWID returned by a query
- Example#1693 - Binding a ROWID on INSERT
- Example#1694 - Binding for a PL/SQL stored function
- Example#1695 - Binding parameters for a PL/SQL stored procedure
- Example#1696 - Binding a CLOB column
- Example#1697 - oci_client_version example
- Example#1698 - Closing a connection
- Example#1699 - Database connections are not closed until all references are closed
- Example#1700 - Closing a connection opened more than once
- Example#1701 - Connections are closed when variables go out of scope
- Example#1702 - oci_commit example
- Example#1703 - Basic oci_connect using Easy Connect syntax
- Example#1704 - Basic oci_connect using a Network Connect name
- Example#1705 - oci_connect with an explicit character set
- Example#1706 - Using multiple calls to oci_connect
- Example#1707 - oci_define_by_name example
- Example#1708 - oci_define_by_name with case sensitive column names
- Example#1709 - oci_define_by_name with LOB columns
- Example#1710 - oci_define_by_name with an explicit type
- Example#1711 - Displaying the Oracle error message after a connection error
- Example#1712 - Displaying the Oracle error message after a parsing error
- Example#1713 - Displaying the Oracle error message, the problematic statement,
and the position of the problem of an execution error
- Example#1714 - oci_execute for queries
- Example#1715 - oci_execute without specifying a mode example
- Example#1716 - oci_execute with OCI_NO_AUTO_COMMIT example
- Example#1717 - oci_execute with different commit modes example
- Example#1718 - oci_execute with
OCI_DESCRIBE_ONLY example
- Example#1719 - oci_fetch_all example
- Example#1720 - oci_fetch_all example with OCI_FETCHSTATEMENT_BY_ROW
- Example#1721 - oci_fetch_all with OCI_NUM
- Example#1722 - oci_fetch_array with OCI_BOTH
- Example#1723 - oci_fetch_array with OCI_NUM
- Example#1724 - oci_fetch_array with OCI_ASSOC
- Example#1725 - oci_fetch_array with OCI_RETURN_NULLS
- Example#1726 - oci_fetch_array with OCI_RETURN_LOBS
- Example#1727 - oci_fetch_array with case sensitive column names
- Example#1728 - oci_fetch_array with columns having duplicate names
- Example#1729 - oci_fetch_array with DATE columns
- Example#1730 - oci_fetch_array with REF CURSOR
- Example#1731 - oci_fetch_array with a LIMIT-like query
- Example#1732 - oci_fetch_object example
- Example#1733 - oci_fetch_object with case sensitive column names
- Example#1734 - oci_fetch_object with LOBs
- Example#1735 - oci_fetch with defined variables
- Example#1736 - oci_fetch with oci_result
- Example#1737 - oci_field_name example
- Example#1738 - oci_field_size example
- Example#1739 - oci_field_type example
- Example#1740 - oci_new_connect example
- Example#1741 - Using REF CURSOR in an Oracle's stored procedure
- Example#1742 - Using REF CURSOR in an Oracle's select statement
- Example#1743 - oci_new_descriptor example
- Example#1744 - oci_new_descriptor example
- Example#1745 - oci_num_fields example
- Example#1746 - oci_num_rows example
- Example#1747 - oci_parse example for SQL statements
- Example#1748 - oci_parse example for PL/SQL statements
- Example#1749 - oci_rollback example
- Example#1750 - Rolling back to a SAVEPOINT example
- Example#1751 - oci_server_version example
- Example#1752 - Setting the action
- Example#1753 - Setting the client identifier to the application user
- Example#1754 - Setting the client information
- Example#1755 - Two scripts can use different versions of myfunc() at the same time
- Example#1756 - Setting the module name
- Example#1757 - Changing the default prefetch value for a query
- Example#1758 - Changing the default prefetch for a REF CURSOR fetch
- Example#1759 - Setting the prefetch value when passing a REF CURSOR back to Oracle
- Example#1760 - oci_statement_type example
- Example#1761 - Conectando ao Ovrimos SQL Server e selecionando de uma tabela do sistema
- Example#1762 - Exemplo ovrimos_connect
- Example#1763 - Um exemplo
- Example#1764 - Um exemplo fetch row
- Example#1765 - Exemplo da ovrimos_prepare
- Example#1766 - Prepara um comando, executa e mostra o resultado
- Example#1767 - ovrimos_result_all com meta-informação
- Example#1768 - Creating a Paradox database with two fields
- Example#1769 - Turn a paradox date into a human readable form
- Example#1770 - Set the date/time fields in a paradox database to the current
date/time
- Example#1771 - Opening a Paradox database
- Example#1772 - Opening a Paradox database
- Example#1773 - Turn a paradox timestamp into a human readable form
- Example#1774 - Exemplo de visão geral da extensão PostgreSQL
- Example#1775 - pg_affected_rows
- Example#1776 - pg_close example
- Example#1777 - Usando pg_connect
- Example#1778 - pg_connection_busy example
- Example#1779 - pg_connection_reset example
- Example#1780 - pg_connection_status example
- Example#1781 - pg_dbname example
- Example#1782 - pg_delete
- Example#1783 - pg_escape_identifier example
- Example#1784 - pg_escape_literal example
- Example#1785 - Using pg_execute
- Example#1786 - pg_fetch_all_columns example
- Example#1787 - Retornando linhas (registros) no PostgreSQL
- Example#1788 - Retornando linhas (registros) no PostgreSQL
- Example#1789 - Retornando linhas (registros) no PostgreSQL
- Example#1790 - Postgres fetch object
- Example#1791 - Retornando linhas (registros) no PostgreSQL
- Example#1792 - pg_field_is_null example
- Example#1793 - Getting informations about fields
- Example#1794 - Getting table information about a field
- Example#1795 - Getting information about fields
- Example#1796 - PostgreSQL NOTIFY message
- Example#1797 - PostgreSQL backend PID
- Example#1798 - pg_insert
- Example#1799 - Obtendo os dados da tabela
- Example#1800 - pg_parameter_status example
- Example#1801 - Exemplo pg_ping
- Example#1802 - Using pg_prepare
- Example#1803 - Inserção de dados na tabela em alta velocidade
- Example#1804 - Using pg_query_params
- Example#1805 - pg_result_error_field example
- Example#1806 - pg_select
- Example#1807 - Using pg_send_execute
- Example#1808 - Using pg_send_prepare
- Example#1809 - Using pg_send_query_params
- Example#1810 - Asynchronous Queries
- Example#1811 - pg_set_error_verbosity example
- Example#1812 - pg_transaction_status example
- Example#1813 - pg_update
- Example#1814 - pg_version example
- Example#1815 - sqlite_array_query implementado por você mesmo
- Example#1816 - Exemplo de agregação
- Example#1817 - Exemplo de sqlite_create_function
- Example#1818 - Exemplo de como usar a função php
- Example#1819 - Procedural example
- Example#1820 - Object-oriented example
- Example#1821 - sqlite_factory example
- Example#1822 - Procedural example
- Example#1823 - Object-oriented example
- Example#1824 - Procedural example
- Example#1825 - Object-oriented example
- Example#1826 - Exemplo sqlite_fetch_single
- Example#1827 - Exemplo sqlite_open
- Example#1828 - Exemplo de função binary-safe max_length
- Example#1829 - SQLite3::changes example
- Example#1830 - SQLite3::close example
- Example#1831 - SQLite3::__construct example
- Example#1832 - SQLite3::createFunction example
- Example#1833 - SQLite3::exec example
- Example#1834 - SQLite3::loadExtension example
- Example#1835 - SQLite3::open example
- Example#1836 - SQLite3::prepare example
- Example#1837 - SQLite3::query example
- Example#1838 - SQLite3::querySingle example
- Example#1839 - SQLite3::version example
- Example#1840 - SQLite3Stmt::bindValue example
- Example#1841 - sqlsrv_begin_transaction example
- Example#1842 - sqlsrv_cancel example
- Example#1843 - sqlsrv_client_info example
- Example#1844 - sqlsrv_close example
- Example#1845 - sqlsrv_commit example
- Example#1846 - Connect using Windows Authentication.
- Example#1847 - Connect by specifying a user name and password.
- Example#1848 - Connect on a specifed port.
- Example#1849 - functionname example
- Example#1850 - sqlsrv_execute example
- Example#1851 - Retrieving an associative array.
- Example#1852 - Retrieving a numeric array.
- Example#1853 - sqlsrv_fetch_object example
- Example#1854 - sqlsrv_fetch example
- Example#1855 - sqlsrv_field_metadata example
- Example#1856 - sqlsrv_free_stmt example
- Example#1857 - sqlsrv_get_field example
- Example#1858 - sqlsrv_has_rows example
- Example#1859 - sqlsrv_next_result example
- Example#1860 - sqlsrv_num_fields example
- Example#1861 - sqlsrv_num_rows example
- Example#1862 - sqlsrv_prepare example
- Example#1863 - sqlsrv_query example
- Example#1864 - sqlsrv_rollback example
- Example#1865 - sqlsrv_rows_affected example
- Example#1866 - sqlsrv_send_stream_data example
- Example#1867 - sqlsrv_server_info example
- Example#1868 - Delete-Query
- Example#1869 - Exemplo sybase_connect
- Example#1870 - Nomes de campos identicos
- Example#1871 - sybase_fetch_object retornado como Foo
- Example#1872 - Exemplo da sybase_set_message_handler
- Example#1873 - Exemplo de sybase_set_message_handler usando uma classe
- Example#1874 - Exemplo de sybase_set_message_handler com mensagens não manipuladas
- Example#1875 - Exemplo sybase_unbuffered_query
- Example#1876 - Putting and getting a key-value pair
- Example#1877 - TokyoTyrant::add example
- Example#1878 - TokyoTyrant::connect example
- Example#1879 - TokyoTyrant::connectUri example
- Example#1880 - TokyoTyrant::copy example
- Example#1881 - TokyoTyrant::ext example
- Example#1882 - TokyoTyrant::fwmKeys example
- Example#1883 - TokyoTyrant::get example
- Example#1884 - TokyoTyrant::getIterator example
- Example#1885 - TokyoTyrant::num example
- Example#1886 - TokyoTyrant::out example
- Example#1887 - TokyoTyrant::put example
- Example#1888 - TokyoTyrant::putCat example
- Example#1889 - tokyotyrant::putKeep example
- Example#1890 - TokyoTyrant::putNr example
- Example#1891 - TokyoTyrant::putShl example
- Example#1892 - TokyoTyrant::setMaster example
- Example#1893 - TokyoTyrant::size example
- Example#1894 - TokyoTyrant::stat example
- Example#1895 - TokyoTyrant::vanish example
- Example#1896 - TokyoTyrantTable::genUid example
- Example#1897 - TokyoTyrantTable::get example
- Example#1898 - TokyoTyrantTable::getIterator example
- Example#1899 - TokyoTyrantTable::getQuery example
- Example#1900 - TokyoTyrantTable::out example
- Example#1901 - TokyoTyrantTable::put example
- Example#1902 - TokyoTyrantTable::putCat example
- Example#1903 - TokyoTyrantTable::putKeep example
- Example#1904 - TokyoTyrantQuery::addCond example
- Example#1905 - TokyoTyrantQuery::__construct example
- Example#1906 - TokyoTyrantQuery::count example
- Example#1907 - TokyoTyrantQuery iterator example
- Example#1908 - TokyoTyrantQuery::hint example
- Example#1909 - TokyoTyrantQuery iterator example
- Example#1910 - TokyoTyrantQuery::metaSearch example
- Example#1911 - TokyoTyrantQuery iterator example
- Example#1912 - TokyoTyrantQuery::out example
- Example#1913 - TokyoTyrantQuery iterator example
- Example#1914 - TokyoTyrantQuery::search example
- Example#1915 - TokyoTyrantQuery iterator example
- Example#1916 - TokyoTyrantIterator::__construct example
- Example#1917 - Closing an open file descriptor
- Example#1918 - Setting and clearing a lock
- Example#1919 - Opening a file descriptor
- Example#1920 - Positioning in a file
- Example#1921 - Setting the baud rate on a serial port
- Example#1922 - chdir example
- Example#1923 - Exemplo da closedir
- Example#1924 - Exemplo da dir
- Example#1925 - Exemplo da getcwd
- Example#1926 - exemplo de opendir
- Example#1927 - Listando todos os arquivos de um diretório
- Example#1928 - Listar todos os arquivos no diretório atual e retirar .
e ..
- Example#1929 - Um exemplo simples de scandir
- Example#1930 - Alternativas do PHP 4 para scandir
- Example#1931 - A finfo_buffer example
- Example#1932 - A finfo_file example
- Example#1933 - Estilo orientado à objeto
- Example#1934 - Estilo procedural
- Example#1935 - mime_content_type Example
- Example#1936 - Exemplo da basename
- Example#1937 - exemplo do copy
- Example#1938 - exemplo do dirname
- Example#1939 - Exemplo da disk_free_space
- Example#1940 - Exemplo da disk_total_space
- Example#1941 - Exemplo da fclose
- Example#1942 - Exemplo de feof com um ponteiro de arquivo inválido
- Example#1943 - Um exemplo da fgetc
- Example#1944 - Lê e imprime todo o conteúdo de um arquivo CSV
- Example#1945 - Lendo um arquivo linha por linha
- Example#1946 - Testando se um arquivo existe
- Example#1947 - Exemplo de file
- Example#1948 - Exemplo de fileatime
- Example#1949 - Exemplo da filectime
- Example#1950 - Exemplo da filemtime
- Example#1951 - Mostra as permissões na forma octal
- Example#1952 - Mostra as permissões completas
- Example#1953 - Exemplo de filesize
- Example#1954 - Exemplo de filetype
- Example#1955 - Exemplo da flock
- Example#1956 - Comparando uma cor com um padrão de curingas shell
- Example#1957 - Exemplos de fopen
- Example#1958 - Usando fpassthru com arquivo binário
- Example#1959 - Exemplo de fputcsv
- Example#1960 - Um simples exemplo de fread
- Example#1961 - Exemplo de fread binário
- Example#1962 - Exemplos de fread remoto
- Example#1963 - Exemplo de fscanf
- Example#1964 - Conteúdo de users.txt
- Example#1965 - Exemplo de fseek
- Example#1966 - Exemplo fstat
- Example#1967 - Exemplo da ftell
- Example#1968 - Um simples exemplo de fwrite
- Example#1969 - Modo conveniente de como glob pode susbstituir
opendir e companhia.
- Example#1970 - Exemplo da is_dir
- Example#1971 - Exemplo da is_executable
- Example#1972 - Exemplo da is_file
- Example#1973 - Exemplo de is_readable
- Example#1974 - Exemplo de is_uploaded_file
- Example#1975 - Exemplo de is_writable
- Example#1976 - Changing the group of a symbolic link
- Example#1977 - Changing the owner of a symbolic link
- Example#1978 - Exemplo da linkinfo
- Example#1979 - Exemplo de mkdir
- Example#1980 - Conteúdo de sample.ini
- Example#1981 - Exemplo de parse_ini_file
- Example#1982 - Exemplo de pathinfo
- Example#1983 - Exemplo de popen
- Example#1984 - Exemplo da popen
- Example#1985 - Exemplo de readlink
- Example#1986 - realpath_cache_get example
- Example#1987 - realpath_cache_size example
- Example#1988 - Exemplo da realpath
- Example#1989 - realpath em Windows
- Example#1990 - Exemplo da rename
- Example#1991 - Exemplo da tempnam
- Example#1992 - Exemplo da tmpfile
- Example#1993 - Exemplo da função touch
- Example#1994 - Exemplo da umask
- Example#1995 - Example usage of inotify
- Example#1996 - Setando o path para magic.mime
- Example#1997 - setproctitle example
- Example#1998 - setthreadtitle example
- Example#1999 - Instalação manuao do xattr
- Example#2000 - Checa se o adminitrador dos sistema assinou o arquivo
- Example#2001 - Imprime o nome de todos os atributos extendidos do arquivo
- Example#2002 - Remove todos os atributos extendidos de um arquivo
- Example#2003 - Edita atributos extendidos em um arquivo .wav
- Example#2004 - Exemplo de chamada de xattr_supported
- Example#2005 - xdiff_file_bdiff_size example
- Example#2006 - xdiff_file_bdiff example
- Example#2007 - xdiff_file_bpatch example
- Example#2008 - xdiff_file_diff_binary example
- Example#2009 - xdiff_file_diff example
- Example#2010 - xdiff_file_merge3 example
- Example#2011 - xdiff_file_patch_binary example
- Example#2012 - xdiff_file_patch example
- Example#2013 - Patch reversing example
- Example#2014 - xdiff_file_rabdiff example
- Example#2015 - xdiff_string_bdiff_size example
- Example#2016 - xdiff_string_diff example
- Example#2017 - xdiff_string_patch example
- Example#2018 - Enchant Usage Example
- Example#2019 - List the backends provided by the given broker
- Example#2020 - A enchant_broker_dict_exists example
- Example#2021 - List all available dictionaries for one broker
- Example#2022 - A enchant_broker_request_dict example
- Example#2023 - A enchant_dict_describe example
- Example#2024 - A enchant_dict_quick_check example
- Example#2025 - A enchant_dict_suggest example
- Example#2026 - Exemplo da bindtextdomain
- Example#2027 - gettext-checa
- Example#2028 - Exemplo da ngettext
- Example#2029 - iconv_get_encoding example
- Example#2030 - iconv_mime_decode_headers example
- Example#2031 - iconv_mime_decode example
- Example#2032 - iconv_mime_encode example
- Example#2033 - iconv_set_encoding example
- Example#2034 - iconv example
- Example#2035 - ob_iconv_handler example:
- Example#2036 - Example of using the procedural API
- Example#2037 - Example of using the object-oriented API
- Example#2038 - FRENCH_COLLATION rules
- Example#2039 - ALTERNATE_HANDLING rules
- Example#2040 - CASE_FIRST rules
- Example#2041 - CASE_LEVEL rules
- Example#2042 - collator_asortexample
- Example#2043 - collator_compareexample
- Example#2044 - Collator::__construct example
- Example#2045 - collator_create example
- Example#2046 - collator_get_attribute example
- Example#2047 - collator_get_error_code example
- Example#2048 - collator_get_error_message example
- Example#2049 - collator_get_locale example
- Example#2050 - collator_get_sort_keyexample
- Example#2051 - collator_get_strength example
- Example#2052 - collator_set_attribute example
- Example#2053 - collator_set_strength example
- Example#2054 - collator_sort_with_sort_keys example
- Example#2055 - collator_sort example
- Example#2056 - numfmt_create example
- Example#2057 - NumberFormatter::create example
- Example#2058 - numfmt_format_currency example
- Example#2059 - OO example
- Example#2060 - numfmt_format example
- Example#2061 - OO example
- Example#2062 - numfmt_get_attribute example
- Example#2063 - OO example
- Example#2064 - numfmt_get_error_code example
- Example#2065 - OO example
- Example#2066 - numfmt_get_error_message example
- Example#2067 - OO example
- Example#2068 - numfmt_get_locale example
- Example#2069 - numfmt_get_pattern example
- Example#2070 - OO example
- Example#2071 - numfmt_get_symbol example
- Example#2072 - OO example
- Example#2073 - numfmt_get_text_attribute example
- Example#2074 - OO example
- Example#2075 - numfmt_parse_currency example
- Example#2076 - OO example
- Example#2077 - numfmt_parse example
- Example#2078 - OO example
- Example#2079 - numfmt_set_attribute example
- Example#2080 - OO example
- Example#2081 - numfmt_set_pattern example
- Example#2082 - OO example
- Example#2083 - numfmt_set_symbol example
- Example#2084 - OO example
- Example#2085 - numfmt_set_text_attribute example
- Example#2086 - OO example
- Example#2087 - locale_accept_from_http example
- Example#2088 - OO example
- Example#2089 - locale_compose example
- Example#2090 - OO example
- Example#2091 - locale_filter_matches example
- Example#2092 - OO example
- Example#2093 - locale_get_all_variants example
- Example#2094 - OO example
- Example#2095 - locale_get_default example
- Example#2096 - OO example
- Example#2097 - locale_get_display_language example
- Example#2098 - OO example
- Example#2099 - locale_get_display_name example
- Example#2100 - OO example
- Example#2101 - locale_get_display_region example
- Example#2102 - OO example
- Example#2103 - locale_get_display_script example
- Example#2104 - OO example
- Example#2105 - locale_get_display_variant example
- Example#2106 - OO example
- Example#2107 - locale_get_keywords example
- Example#2108 - OO example
- Example#2109 - locale_get_primary_language example
- Example#2110 - OO example
- Example#2111 - locale_get_region example
- Example#2112 - OO example
- Example#2113 - locale_get_script example
- Example#2114 - OO example
- Example#2115 - locale_lookup example
- Example#2116 - OO example
- Example#2117 - locale_parse example
- Example#2118 - OO example
- Example#2119 - locale_set_default example
- Example#2120 - OO example
- Example#2121 - normalizer_is_normalized example
- Example#2122 - OO example
- Example#2123 - normalizer_normalize example
- Example#2124 - OO example
- Example#2125 - msgfmt_create example
- Example#2126 - OO example
- Example#2127 - msgfmt_format_message example
- Example#2128 - OO example
- Example#2129 - msgfmt_format example
- Example#2130 - OO example
- Example#2131 - msgfmt_get_error_code example
- Example#2132 - OO example
- Example#2133 - msgfmt_get_error_message example
- Example#2134 - OO example
- Example#2135 - msgfmt_get_locale example
- Example#2136 - OO example
- Example#2137 - msgfmt_get_pattern example
- Example#2138 - OO example
- Example#2139 - msgfmt_parse_message example
- Example#2140 - OO example
- Example#2141 - msgfmt_parse example
- Example#2142 - OO example
- Example#2143 - msgfmt_set_pattern example
- Example#2144 - OO example
- Example#2145 - datefmt_create example
- Example#2146 - OO example
- Example#2147 - datefmt_format example
- Example#2148 - OO example
- Example#2149 - datefmt_get_calendar example
- Example#2150 - OO example
- Example#2151 - datefmt_get_datetype example
- Example#2152 - OO example
- Example#2153 - datefmt_get_error_code example
- Example#2154 - OO example
- Example#2155 - datefmt_get_error_message example
- Example#2156 - OO example
- Example#2157 - datefmt_get_locale example
- Example#2158 - OO example
- Example#2159 - datefmt_get_pattern example
- Example#2160 - OO example
- Example#2161 - datefmt_get_timetype example
- Example#2162 - OO example
- Example#2163 - datefmt_get_timezone_id example
- Example#2164 - OO example
- Example#2165 - datefmt_is_lenient example
- Example#2166 - OO example
- Example#2167 - datefmt_localtime example
- Example#2168 - OO example
- Example#2169 - datefmt_parse example
- Example#2170 - OO example
- Example#2171 - datefmt_set_calendar example
- Example#2172 - OO example
- Example#2173 - datefmt_set_lenient example
- Example#2174 - OO example
- Example#2175 - datefmt_set_pattern example
- Example#2176 - OO example
- Example#2177 - datefmt_set_timezone_id example
- Example#2178 - OO example
- Example#2179 - resourcebundle_count example
- Example#2180 - OO example
- Example#2181 - resourcebundle_create example
- Example#2182 - ResourceBundle::create example
- Example#2183 - resourcebundle_get_error_code example
- Example#2184 - OO example
- Example#2185 - resourcebundle_get_error_message example
- Example#2186 - OO example
- Example#2187 - resourcebundle_get example
- Example#2188 - OO example
- Example#2189 - resourcebundle_locales example
- Example#2190 - OO example
- Example#2191 - Converting escaped UTF-16 code units
- Example#2192 - grapheme_extract example
- Example#2193 - grapheme_stripos example
- Example#2194 - grapheme_stristr example
- Example#2195 - grapheme_strlen example
- Example#2196 - grapheme_strpos example
- Example#2197 - grapheme_strripos example
- Example#2198 - grapheme_strrpos example
- Example#2199 - grapheme_strstr example
- Example#2200 - grapheme_substr example
- Example#2201 - idn_to_ascii example
- Example#2202 - idn_to_utf8 example
- Example#2203 - intl_error_name example
- Example#2204 - intl_get_error_code example
- Example#2205 - intl_get_error_message example
- Example#2206 - intl_is_failure example
- Example#2207 - php.ini setting examples
- Example#2208 - php.ini setting for EUC-JP users
- Example#2209 - php.ini setting for SJIS users
- Example#2210 - Disable HTTP input conversion in php.ini
- Example#2211 - php.ini setting example
- Example#2212 - Script example
- Example#2213 - mb_convert_case example
- Example#2214 - mb_convert_case example with non-Latin UTF-8 text
- Example#2215 - mb_convert_encoding example
- Example#2216 - mb_convert_kana example
- Example#2217 - mb_convert_variables example
- Example#2218 - convmap example
- Example#2219 - mb_detect_encoding example
- Example#2220 - Useless detect order example
- Example#2221 - mb_detect_order examples
- Example#2222 - mb_encode_mimeheader example
- Example#2223 - convmap example
- Example#2224 - mb_encode_numericentity example
- Example#2225 - mb_encoding_aliases example
- Example#2226 - mb_ereg_replace_callback example
- Example#2227 - mb_ereg_replace_callback using anonymous function
supported in PHP 5.3.0 or later
- Example#2228 - mb_internal_encoding example
- Example#2229 - mb_list_encodings example
- Example#2230 - mb_output_handler example
- Example#2231 - mb_preferred_mime_name example
- Example#2232 - mb_strimwidth example
- Example#2233 - mb_strtolower example
- Example#2234 - mb_strtolower example with non-Latin UTF-8 text
- Example#2235 - mb_strtoupper example
- Example#2236 - mb_strtoupper example with non-Latin UTF-8 text
- Example#2237 - mb_substitute_character example
- Example#2238 - mb_substr_count example
- Example#2239 - pspell_add_to_personal
- Example#2240 - pspell_check Example
- Example#2241 - pspell_add_to_personal Example
- Example#2242 - pspell_config_create
- Example#2243 - pspell_config_ignore
- Example#2244 - pspell_config_mode Example
- Example#2245 - pspell_config_personal
- Example#2246 - pspell_config_repl
- Example#2247 - pspell_config_runtogether
- Example#2248 - pspell_new_config
- Example#2249 - pspell_new_personal
- Example#2250 - pspell_new
- Example#2251 - pspell_add_to_personal
- Example#2252 - pspell_store_replacement
- Example#2253 - pspell_suggest example
- Example#2254 - Basic recode_file example
- Example#2255 - Basic recode_string example
- Example#2256 - Cairo Example
- Example#2257 - cairo_create example
- Example#2258 - cairo_font_face_get_type example
- Example#2259 - cairo_font_face_status example
- Example#2260 - cairo_font_options_create example
- Example#2261 - cairo_font_options_equal example
- Example#2262 - cairo_font_options_get_antialias example
- Example#2263 - cairo_font_options_get_hint_metrics example
- Example#2264 - cairo_font_options_get_hint_style example
- Example#2265 - cairo_font_options_get_subpixel_order example
- Example#2266 - cairo_font_options_hash example
- Example#2267 - cairo_font_options_merge example
- Example#2268 - cairo_font_options_set_antialias example
- Example#2269 - cairo_font_options_set_hint_metrics example
- Example#2270 - cairo_font_options_set_hint_style example
- Example#2271 - cairo_font_options_set_subpixel_order example
- Example#2272 - cairo_font_options_status example
- Example#2273 - cairo_format_stride_for_width example
- Example#2274 - cairo_image_surface_create_for_data example
- Example#2275 - cairo_image_surface_create_from_png example
- Example#2276 - cairo_image_surface_create example
- Example#2277 - cairo_image_surface_get_data example
- Example#2278 - cairo_image_surface_get_format example
- Example#2279 - cairo_image_surface_get_height example
- Example#2280 - cairo_image_surface_get_stride example
- Example#2281 - cairo_image_surface_get_width example
- Example#2282 - cairo_matrix_invert example
- Example#2283 - cairo_matrix_multiply example
- Example#2284 - cairo_matrix_rotate example
- Example#2285 - cairo_matrix_transform_distance example
- Example#2286 - cairo_matrix_transform_point example
- Example#2287 - cairo_matrix_translate example
- Example#2288 - cairo_pattern_add_color_stop_rgb example
- Example#2289 - cairo_pattern_add_color_stop_rgba example
- Example#2290 - cairo_pattern_create_for_surface example
- Example#2291 - cairo_pattern_create_linear example
- Example#2292 - cairo_pattern_create_radial example
- Example#2293 - cairo_pattern_create_rgb example
- Example#2294 - cairo_pattern_create_rgba example
- Example#2295 - cairo_pattern_get_color_stop_count example
- Example#2296 - cairo_pattern_get_color_stop_rgba example
- Example#2297 - cairo_pattern_get_extend example
- Example#2298 - cairo_pattern_get_filter example
- Example#2299 - cairo_pattern_get_linear_points example
- Example#2300 - cairo_pattern_get_matrix example
- Example#2301 - cairo_pattern_get_radial_circles example
- Example#2302 - cairo_pattern_get_rgba example
- Example#2303 - cairo_pattern_get_surface example
- Example#2304 - cairo_pattern_get_type example
- Example#2305 - cairo_pattern_set_extend example
- Example#2306 - cairo_pattern_set_filter example
- Example#2307 - cairo_pattern_set_matrix example
- Example#2308 - cairo_pattern_status example
- Example#2309 - cairo_pdf_surface_create example
- Example#2310 - cairo_pdf_surface_set_size example
- Example#2311 - cairo_ps_get_levels example
- Example#2312 - cairo_ps_level_to_string example
- Example#2313 - cairo_ps_surface_create example
- Example#2314 - cairo_ps_surface_dsc_begin_page_setup example
- Example#2315 - cairo_ps_surface_dsc_begin_setup example
- Example#2316 - cairo_ps_surface_dsc_comment example
- Example#2317 - cairo_ps_surface_get_eps example
- Example#2318 - cairo_ps_surface_restrict_to_level example
- Example#2319 - cairo_ps_surface_set_eps example
- Example#2320 - cairo_ps_surface_set_size example
- Example#2321 - cairo_scaled_font_create example
- Example#2322 - cairo_scaled_font_extents example
- Example#2323 - cairo_scaled_font_get_ctm example
- Example#2324 - cairo_scaled_font_get_font_face example
- Example#2325 - cairo_scaled_font_get_font_matrix example
- Example#2326 - cairo_scaled_font_get_font_options example
- Example#2327 - cairo_scaled_font_get_scale_matrix example
- Example#2328 - cairo_scaled_font_get_type example
- Example#2329 - cairo_scaled_font_glyph_extents example
- Example#2330 - cairo_scaled_font_status example
- Example#2331 - cairo_scaled_font_text_extents example
- Example#2332 - cairo_surface_copy_page example
- Example#2333 - cairo_surface_create_similar example
- Example#2334 - cairo_surface_finish example
- Example#2335 - cairo_surface_flush example
- Example#2336 - cairo_surface_get_content example
- Example#2337 - cairo_surface_get_device_offset example
- Example#2338 - cairo_surface_get_font_options example
- Example#2339 - cairo_surface_get_type example
- Example#2340 - cairo_surface_mark_dirty_rectangle example
- Example#2341 - cairo_surface_mark_dirty example
- Example#2342 - cairo_surface_set_device_offset example
- Example#2343 - cairo_surface_set_fallback_resolution example
- Example#2344 - cairo_surface_show_page example
- Example#2345 - cairo_surface_status example
- Example#2346 - cairo_surface_write_to_png example
- Example#2347 - cairo_svg_surface_create example
- Example#2348 - cairo_svg_surface_restrict_to_version example
- Example#2349 - cairo_svg_version_to_string example
- Example#2350 - Estilo orientado à objeto
- Example#2351 - Estilo procedural
- Example#2352 - Estilo orientado à objeto
- Example#2353 - Estilo procedural
- Example#2354 - Estilo orientado à objeto
- Example#2355 - Estilo procedural
- Example#2356 - Estilo orientado à objeto
- Example#2357 - Estilo procedural
- Example#2358 - Estilo orientado à objeto
- Example#2359 - Estilo procedural
- Example#2360 - Estilo orientado à objeto
- Example#2361 - Estilo procedural
- Example#2362 - Estilo orientado à objeto
- Example#2363 - Estilo procedural
- Example#2364 - Estilo orientado à objeto
- Example#2365 - Estilo procedural
- Example#2366 - Estilo orientado à objeto
- Example#2367 - Estilo procedural
- Example#2368 - Estilo orientado à objeto
- Example#2369 - Estilo procedural
- Example#2370 - Estilo orientado à objeto
- Example#2371 - Estilo procedural
- Example#2372 - Estilo orientado à objeto
- Example#2373 - Estilo procedural
- Example#2374 - Estilo orientado à objeto
- Example#2375 - Estilo procedural
- Example#2376 - CairoContext::__construct example
- Example#2377 - Estilo orientado à objeto
- Example#2378 - Estilo procedural
- Example#2379 - Estilo orientado à objeto
- Example#2380 - Estilo procedural
- Example#2381 - Estilo orientado à objeto
- Example#2382 - Estilo procedural
- Example#2383 - Estilo orientado à objeto
- Example#2384 - Estilo procedural
- Example#2385 - Estilo orientado à objeto
- Example#2386 - Estilo procedural
- Example#2387 - Estilo orientado à objeto
- Example#2388 - Estilo procedural
- Example#2389 - Estilo orientado à objeto
- Example#2390 - Estilo procedural
- Example#2391 - Estilo orientado à objeto
- Example#2392 - Estilo procedural
- Example#2393 - Estilo orientado à objeto
- Example#2394 - Estilo procedural
- Example#2395 - Estilo orientado à objeto
- Example#2396 - Estilo procedural
- Example#2397 - Estilo orientado à objeto
- Example#2398 - Estilo procedural
- Example#2399 - Estilo orientado à objeto
- Example#2400 - Estilo procedural
- Example#2401 - Estilo orientado à objeto
- Example#2402 - Estilo procedural
- Example#2403 - Estilo orientado à objeto
- Example#2404 - Estilo procedural
- Example#2405 - Estilo orientado à objeto
- Example#2406 - Estilo procedural
- Example#2407 - Estilo orientado à objeto
- Example#2408 - Estilo procedural
- Example#2409 - Estilo orientado à objeto
- Example#2410 - Estilo procedural
- Example#2411 - Estilo orientado à objeto
- Example#2412 - Estilo procedural
- Example#2413 - Estilo orientado à objeto
- Example#2414 - Estilo procedural
- Example#2415 - Estilo orientado à objeto
- Example#2416 - Estilo procedural
- Example#2417 - Estilo orientado à objeto
- Example#2418 - Estilo procedural
- Example#2419 - Estilo orientado à objeto
- Example#2420 - Estilo procedural
- Example#2421 - Estilo orientado à objeto
- Example#2422 - Estilo procedural
- Example#2423 - Estilo orientado à objeto
- Example#2424 - Estilo procedural
- Example#2425 - Estilo orientado à objeto
- Example#2426 - Estilo procedural
- Example#2427 - Estilo orientado à objeto
- Example#2428 - Estilo procedural
- Example#2429 - Estilo orientado à objeto
- Example#2430 - Estilo procedural
- Example#2431 - Estilo orientado à objeto
- Example#2432 - Estilo procedural
- Example#2433 - Estilo orientado à objeto
- Example#2434 - Estilo procedural
- Example#2435 - Estilo orientado à objeto
- Example#2436 - Estilo procedural
- Example#2437 - Estilo orientado à objeto
- Example#2438 - Estilo procedural
- Example#2439 - Estilo orientado à objeto
- Example#2440 - Estilo procedural
- Example#2441 - Estilo orientado à objeto
- Example#2442 - Estilo procedural
- Example#2443 - Estilo orientado à objeto
- Example#2444 - Estilo procedural
- Example#2445 - Estilo orientado à objeto
- Example#2446 - Estilo procedural
- Example#2447 - Estilo orientado à objeto
- Example#2448 - Estilo procedural
- Example#2449 - Estilo orientado à objeto
- Example#2450 - Estilo procedural
- Example#2451 - Estilo orientado à objeto
- Example#2452 - Estilo procedural
- Example#2453 - Estilo orientado à objeto
- Example#2454 - Estilo procedural
- Example#2455 - Estilo orientado à objeto
- Example#2456 - Estilo procedural
- Example#2457 - Estilo orientado à objeto
- Example#2458 - Estilo procedural
- Example#2459 - Estilo orientado à objeto
- Example#2460 - Estilo procedural
- Example#2461 - Estilo orientado à objeto
- Example#2462 - Estilo procedural
- Example#2463 - Estilo orientado à objeto
- Example#2464 - Estilo procedural
- Example#2465 - Estilo orientado à objeto
- Example#2466 - Estilo procedural
- Example#2467 - Estilo orientado à objeto
- Example#2468 - Estilo procedural
- Example#2469 - Estilo orientado à objeto
- Example#2470 - Estilo procedural
- Example#2471 - Estilo orientado à objeto
- Example#2472 - Estilo procedural
- Example#2473 - Estilo orientado à objeto
- Example#2474 - Estilo procedural
- Example#2475 - Estilo orientado à objeto
- Example#2476 - Estilo procedural
- Example#2477 - Estilo orientado à objeto
- Example#2478 - Estilo procedural
- Example#2479 - Estilo orientado à objeto
- Example#2480 - Estilo procedural
- Example#2481 - Estilo orientado à objeto
- Example#2482 - Estilo procedural
- Example#2483 - Estilo orientado à objeto
- Example#2484 - Estilo procedural
- Example#2485 - Estilo orientado à objeto
- Example#2486 - Estilo procedural
- Example#2487 - Estilo orientado à objeto
- Example#2488 - Estilo procedural
- Example#2489 - Estilo orientado à objeto
- Example#2490 - Estilo procedural
- Example#2491 - Estilo orientado à objeto
- Example#2492 - Estilo procedural
- Example#2493 - Estilo orientado à objeto
- Example#2494 - Estilo procedural
- Example#2495 - Estilo orientado à objeto
- Example#2496 - Estilo procedural
- Example#2497 - Estilo orientado à objeto
- Example#2498 - Estilo procedural
- Example#2499 - Estilo orientado à objeto
- Example#2500 - Estilo procedural
- Example#2501 - Estilo orientado à objeto
- Example#2502 - Estilo procedural
- Example#2503 - Estilo orientado à objeto
- Example#2504 - Estilo procedural
- Example#2505 - Estilo orientado à objeto
- Example#2506 - Estilo procedural
- Example#2507 - Estilo orientado à objeto
- Example#2508 - Estilo procedural
- Example#2509 - Estilo orientado à objeto
- Example#2510 - Estilo procedural
- Example#2511 - Estilo orientado à objeto
- Example#2512 - Estilo procedural
- Example#2513 - Estilo orientado à objeto
- Example#2514 - Estilo procedural
- Example#2515 - Estilo orientado à objeto
- Example#2516 - Estilo procedural
- Example#2517 - Estilo orientado à objeto
- Example#2518 - Estilo procedural
- Example#2519 - Estilo orientado à objeto
- Example#2520 - Estilo procedural
- Example#2521 - Estilo orientado à objeto
- Example#2522 - Estilo procedural
- Example#2523 - Estilo orientado à objeto
- Example#2524 - Estilo procedural
- Example#2525 - Estilo orientado à objeto
- Example#2526 - Estilo procedural
- Example#2527 - Estilo orientado à objeto
- Example#2528 - Estilo procedural
- Example#2529 - Estilo orientado à objeto
- Example#2530 - Estilo procedural
- Example#2531 - Estilo orientado à objeto
- Example#2532 - Estilo procedural
- Example#2533 - Estilo orientado à objeto
- Example#2534 - Estilo procedural
- Example#2535 - Estilo orientado à objeto
- Example#2536 - Estilo procedural
- Example#2537 - Estilo orientado à objeto
- Example#2538 - Estilo procedural
- Example#2539 - Estilo orientado à objeto
- Example#2540 - Estilo procedural
- Example#2541 - Estilo orientado à objeto
- Example#2542 - Estilo procedural
- Example#2543 - Estilo orientado à objeto
- Example#2544 - Estilo procedural
- Example#2545 - Estilo orientado à objeto
- Example#2546 - Estilo procedural
- Example#2547 - Estilo orientado à objeto
- Example#2548 - Estilo procedural
- Example#2549 - Estilo orientado à objeto
- Example#2550 - Estilo procedural
- Example#2551 - CairoSurface::createSimilar example
- Example#2552 - CairoSurface::finish example
- Example#2553 - CairoSurface::flush example
- Example#2554 - CairoSurface::getContent example
- Example#2555 - CairoSurface::getDeviceOffset example
- Example#2556 - Estilo orientado à objeto
- Example#2557 - Estilo procedural
- Example#2558 - CairoSurface::getType example
- Example#2559 - CairoSurface::markDirty example
- Example#2560 - CairoSurface::markDirtyRectangle example
- Example#2561 - CairoSurface::setDeviceOffset example
- Example#2562 - CairoSurface::setFallbackResolution example
- Example#2563 - Estilo orientado à objeto
- Example#2564 - Estilo procedural
- Example#2565 - Estilo orientado à objeto
- Example#2566 - Estilo procedural
- Example#2567 - CairoSurface::writeToPng example
- Example#2568 - CairoSvgSurface::__construct example
- Example#2569 - CairoSvgSurface::getVersions example
- Example#2570 - Estilo procedural
- Example#2571 - CairoSvgSurface::restrictToVersion example
- Example#2572 - CairoSvgSurface::versionToString example
- Example#2573 - CairoImageSurface::__construct example
- Example#2574 - CairoImageSurface::createForData example
- Example#2575 - CairoImageSurface::createFromPng example
- Example#2576 - CairoImageSurface::getData example
- Example#2577 - CairoImageSurface::getFormat example
- Example#2578 - CairoImageSurface::getHeight example
- Example#2579 - CairoImageSurface::getStride example
- Example#2580 - CairoImageSurface::getWidth example
- Example#2581 - CairoPdfSurface::__construct example
- Example#2582 - CairoPdfSurface::setSize example
- Example#2583 - CairoPsSurface::__construct example
- Example#2584 - CairoPsSurface::dscBeginPageSetup example
- Example#2585 - CairoPsSurface::dscBeginSetup example
- Example#2586 - CairoPsSurface::dscComment example
- Example#2587 - CairoPsSurface::getEps example
- Example#2588 - CairoPsSurface::getLevels example
- Example#2589 - CairoPsSurface::levelToString example
- Example#2590 - CairoPsSurface::restrictToLevel example
- Example#2591 - CairoPsSurface::setEps example
- Example#2592 - CairoPsSurface::setSize example
- Example#2593 - CairoFontFace::__construct example
- Example#2594 - CairoFontFace::getType example
- Example#2595 - Estilo orientado à objeto
- Example#2596 - Estilo procedural
- Example#2597 - CairoFontOptions::__construct example
- Example#2598 - CairoFontOptions::equal example
- Example#2599 - Estilo orientado à objeto
- Example#2600 - Estilo procedural
- Example#2601 - CairoFontOptions::getHintMetrics example
- Example#2602 - CairoFontOptions::getHintStyle example
- Example#2603 - CairoFontOptions::getSubpixelOrder example
- Example#2604 - CairoFontOptions::hash example
- Example#2605 - CairoFontOptions::merge example
- Example#2606 - Estilo orientado à objeto
- Example#2607 - Estilo procedural
- Example#2608 - CairoFontOptions::setHintMetrics example
- Example#2609 - CairoFontOptions::setHintStyle example
- Example#2610 - CairoFontOptions::setSubpixelOrder example
- Example#2611 - Estilo orientado à objeto
- Example#2612 - Estilo procedural
- Example#2613 - CairoScaledFont::__construct example
- Example#2614 - CairoScaledFont::extents example
- Example#2615 - CairoScaledFont::getCtm example
- Example#2616 - Estilo orientado à objeto
- Example#2617 - Estilo procedural
- Example#2618 - Estilo orientado à objeto
- Example#2619 - Estilo procedural
- Example#2620 - Estilo orientado à objeto
- Example#2621 - Estilo procedural
- Example#2622 - CairoScaledFont::getScaleMatrix example
- Example#2623 - CairoScaledFont::getType example
- Example#2624 - CairoScaledFont::glyphExtents example
- Example#2625 - Estilo orientado à objeto
- Example#2626 - Estilo procedural
- Example#2627 - Estilo orientado à objeto
- Example#2628 - Estilo procedural
- Example#2629 - CairoPattern::__construct example
- Example#2630 - Estilo orientado à objeto
- Example#2631 - Estilo procedural
- Example#2632 - CairoPattern::getType example
- Example#2633 - Estilo orientado à objeto
- Example#2634 - Estilo procedural
- Example#2635 - Estilo orientado à objeto
- Example#2636 - Estilo procedural
- Example#2637 - CairoGradientPattern::addColorStopRgb example
- Example#2638 - CairoGradientPattern::addColorStopRgba example
- Example#2639 - CairoGradientPattern::getColorStopCount example
- Example#2640 - CairoGradientPattern::getColorStopRgba example
- Example#2641 - CairoGradientPattern::getExtend example
- Example#2642 - CairoGradientPattern::setExtend example
- Example#2643 - CairoSolidPattern::__construct example
- Example#2644 - CairoSolidPattern::getRgba example
- Example#2645 - CairoSurfacePattern::__construct example
- Example#2646 - CairoSurfacePattern::getExtend example
- Example#2647 - CairoSurfacePattern::getFilter example
- Example#2648 - CairoSurfacePattern::getSurface example
- Example#2649 - CairoSurfacePattern::setExtend example
- Example#2650 - CairoSurfacePattern::setFilter example
- Example#2651 - CairoLinearGradient::__construct example
- Example#2652 - CairoLinearGradient::getPoints example
- Example#2653 - CairoRadialGradient::__construct example
- Example#2654 - CairoRadialGradient::getCircles example
- Example#2655 - CairoFormat::strideForWidth example
- Example#2656 - Estilo orientado à objeto
- Example#2657 - Estilo procedural
- Example#2658 - Estilo orientado à objeto
- Example#2659 - Estilo procedural
- Example#2660 - Estilo orientado à objeto
- Example#2661 - Estilo procedural
- Example#2662 - Estilo orientado à objeto
- Example#2663 - Estilo procedural
- Example#2664 - Estilo orientado à objeto
- Example#2665 - Estilo procedural
- Example#2666 - CairoMatrix::invert example
- Example#2667 - CairoMatrix::multiply example
- Example#2668 - Estilo orientado à objeto
- Example#2669 - Estilo procedural
- Example#2670 - Estilo orientado à objeto
- Example#2671 - Estilo procedural
- Example#2672 - CairoMatrix::transformDistance example
- Example#2673 - CairoMatrix::transformPoint example
- Example#2674 - Estilo orientado à objeto
- Example#2675 - Estilo procedural
- Example#2676 - Exemplo da exif_imagetype
- Example#2677 - Exemplo exif_read_data
- Example#2678 - Exemplo da exif_thumbnail
- Example#2679 - Criação de PNG com PHP
- Example#2680 - Usando a gd_info
- Example#2681 - getimagesize (file)
- Example#2682 - getimagesize (URL)
- Example#2683 - getimagesize() e tipos MIME
- Example#2684 - getimagesize() retornando IPTC
- Example#2685 - getimagesizefromstring example
- Example#2686 - image_type_to_extension example
- Example#2687 - image_type_to_mime_type (arquivo)
- Example#2688 - Exemplo image2wbmp
- Example#2689 - imagealphablending usage example
- Example#2690 - Desenhando um círculo com imagearc
- Example#2691 - Exemplo imagechar
- Example#2692 - Exemplo imagecharup
- Example#2693 - Exemplo de uso de imagecolorallocatealpha
- Example#2694 - Acessando os valores RGB distintos
- Example#2695 - Example of using imagecolorclosesthwb
- Example#2696 - imagecolorset example
- Example#2697 - Exemplo imagecolorsforindex
- Example#2698 - Embossing the PHP.net logo
- Example#2699 - Gaussian blur
- Example#2700 - imagecopymergegray usage
- Example#2701 - Simple example
- Example#2702 - Resampling an image proportionally
- Example#2703 - Resizing an image
- Example#2704 - Criando um novo stream de imagem GD e mostrando uma imagem.
- Example#2705 - Exemplo de como manipular um erro durante a criação
- Example#2706 - Exemplo de como manipular um erro durante a criação
- Example#2707 - Exemplo de como manipular um erro durante a criação
- Example#2708 - Exemplo de como manipular um erro durante a criação
- Example#2709 - Criando um novo stream de imagem GD e enviando a imagem.
- Example#2710 - Exemplo imageellipse
- Example#2711 - imagefill example
- Example#2712 - Creating a 3D looking pie
- Example#2713 - Exemplo imagefilledellipse
- Example#2714 - Exemplo imagefilledpolygon
- Example#2715 - Filling an ellipse with a color
- Example#2716 - imagefilter grayscale example
- Example#2717 - imagefilter brightness example
- Example#2718 - imagefilter colorize example
- Example#2719 - imagefilter negate example
- Example#2720 - imagefilter pixelate example
- Example#2721 - imageftbbox example
- Example#2722 - imagegammacorrect usage
- Example#2723 - imagegrabscreen example
- Example#2724 - imagegrabwindow example
- Example#2725 - imagelayereffect example
- Example#2726 - Desenhando uma linha
- Example#2727 - Usando imageloadfont
- Example#2728 - Exemplo imagepolygon
- Example#2729 - imagepsbbox usage
- Example#2730 - imagepsencodefont example
- Example#2731 - imagepsextendfont example
- Example#2732 - Exemplo da imagepsloadfont
- Example#2733 - imagepsslantfont example
- Example#2734 - imagepstext usage
- Example#2735 - imagesetbrush example
- Example#2736 - imagesetstyle example
- Example#2737 - imagesettile example
- Example#2738 - Exemplo da imagestring
- Example#2739 - Usando imagesx
- Example#2740 - Usando imagesy
- Example#2741 - Exemplo imagettftext
- Example#2742 - Verificando o suporte a PNG
- Example#2743 - Saving an XBM file
- Example#2744 - Saving an XBM file with a different foreground color
- Example#2745 - Gmagick Example
- Example#2746 - Gmagick::despeckleimage example
- Example#2747 - Creating a thumbnail in Imagick
- Example#2748 - Make a thumbnail of all JPG files in a directory
- Example#2749 - Creating a reflection of an image
- Example#2750 - Filling text with gradient
- Example#2751 - Read in GIF image and resize all frames
- Example#2752 - Using Imagick::adaptiveBlurImage:
- Example#2753 - Using Imagick::adaptiveResizeImage
- Example#2754 - A Imagick::adaptiveSharpenImage example
- Example#2755 - Using Imagick::annotateImage:
- Example#2756 - Imagick::appendImages example
- Example#2757 - Using Imagick::blurImage:
- Example#2758 - Using Imagick::chopImage:
- Example#2759 - Imagick object cloning in different versions of imagick
- Example#2760 - Using Imagick::clutImage:
- Example#2761 - Using Imagick::commentImage:
- Example#2762 - Using Imagick::compareImageLayers
- Example#2763 - Using Imagick::compareImages:
- Example#2764 - Using Imagick::distortImage:
- Example#2765 - Using Imagick::evaluateImage
- Example#2766 - Using Imagick::exportImagePixels
- Example#2767 - Imagick::floodfillPaintImage example
- Example#2768 - Using Imagick::getImageLength:
- Example#2769 - Using Imagick::getImageProperties:
- Example#2770 - Using Imagick::getImageProperty:
- Example#2771 - Using Imagick::getIteratorIndex:
- Example#2772 - Imagick::importImagePixels example
- Example#2773 - Using Imagick::newImage:
- Example#2774 - Using Imagick::optimizeImageLayers
- Example#2775 - Using Imagick::pingImageBlob
- Example#2776 - Using Imagick::pingImageFile
- Example#2777 - A Imagick::polaroidImage example
- Example#2778 - Using Imagick::queryFontMetrics:
- Example#2779 - Using Imagick::roundCorners:
- Example#2780 - A Imagick::setFont example
- Example#2781 - A Imagick::setImage example
- Example#2782 - A Imagick::setImageOpacity example
- Example#2783 - Using Imagick::setImageProperty:
- Example#2784 - Using Imagick::setIteratorIndex:
- Example#2785 - A Imagick::setPointSize example
- Example#2786 - Using Imagick::transformImage:
- Example#2787 - Using Imagick::trimImage:
- Example#2788 - imap_append example
- Example#2789 - imap_check example
- Example#2790 - imap_createmailbox example
- Example#2791 - imap_delete example
- Example#2792 - imap_fetch_overview example
- Example#2793 - imap_gc example
- Example#2794 - imap_get_quota example
- Example#2795 - imap_get_quota 4.3 or greater example
- Example#2796 - imap_get_quotaroot example
- Example#2797 - imap_getacl example
- Example#2798 - imap_getmailboxes example
- Example#2799 - imap_list example
- Example#2800 - imap_mail_compose example
- Example#2801 - imap_mailboxmsginfo example
- Example#2802 - imap_mime_header_decode example
- Example#2803 - Different use of imap_open
- Example#2804 - imap_open example
- Example#2805 - imap_ping Example
- Example#2806 - imap_reopen example
- Example#2807 - imap_rfc822_parse_adrlist example
- Example#2808 - imap_rfc822_write_address example
- Example#2809 - imap_search example
- Example#2810 - imap_set_quota example
- Example#2811 - imap_setflag_full example
- Example#2812 - imap_status example
- Example#2813 - imap_thread Example
- Example#2814 - imap_timeout example
- Example#2815 - Calculando o hash e inscrevendo um usuário
- Example#2816 - Enviando email.
- Example#2817 - Enviando email com cabeçalhos extra.
- Example#2818 - Enviando email com um parâmetro adicional da linha de comando.
- Example#2819 - Enviando email HTML
- Example#2820 - mailparse_determine_best_xfer_encoding example
- Example#2821 - mailparse_rfc822_parse_addresses example
- Example#2822 - mailparse_stream_encode example
- Example#2823 - mailparse_uudecode_all example
- Example#2824 - Exemplo bcadd
- Example#2825 - Exemplo da bccomp
- Example#2826 - Exemplo da bcdiv
- Example#2827 - Exemplo da bcmod
- Example#2828 - Exemplo da bcmul
- Example#2829 - Exemplo da bcpow
- Example#2830 - Exemplo de bcpow
- Example#2831 - Exemplo da bcscale
- Example#2832 - Exemplo de bcsqrt
- Example#2833 - Exemplo de bcsub
- Example#2834 - Função factorial usando GMP
- Example#2835 - Exemplo da gmp_abs
- Example#2836 - Exemplo gmp_add
- Example#2837 - Exemplo da gmp_and
- Example#2838 - gmp_clrbit example
- Example#2839 - Exemplo da gmp_cmp
- Example#2840 - Exemplo gmp_com
- Example#2841 - Exemplo da gmp_div_q
- Example#2842 - Divisão de números GMP
- Example#2843 - Exemplo da gmp_div_r
- Example#2844 - Exemplo gmp_divexact
- Example#2845 - Exemplo gmp_fact
- Example#2846 - Exemplo da gmp_gcd
- Example#2847 - Resolvendo uma equação linear Diophantine
- Example#2848 - Exemplo da gmp_hamdist
- Example#2849 - Criando um número GMP
- Example#2850 - Exemplo gmp_intval
- Example#2851 - gmp_invert example
- Example#2852 - Exemplo gmp_jacobi
- Example#2853 - Exemplo da gmp_legendre
- Example#2854 - Exemplo da gmp_mod
- Example#2855 - Exemplo da gmp_mul
- Example#2856 - Exemplo da gmp_neg
- Example#2857 - Exemplo da gmp_nextprime
- Example#2858 - Exemplo da gmp_or
- Example#2859 - gmp_perfect_square example
- Example#2860 - Exemplo da gmp_popcount
- Example#2861 - Exemplo gmp_pow
- Example#2862 - Exemplo da gmp_powm
- Example#2863 - Exemplo da gmp_prob_prime
- Example#2864 - Exemplo da gmp_random
- Example#2865 - gmp_scan0 example
- Example#2866 - gmp_scan1 example
- Example#2867 - gmp_setbit example
- Example#2868 - Exemplo da gmp_sign
- Example#2869 - Exemplo gmp_sqrt
- Example#2870 - Exemplo da gmp_sqrtrem
- Example#2871 - Convertendo um número GMP para uma string
- Example#2872 - Exemplo da gmp_sub
- Example#2873 - gmp_testbit example
- Example#2874 - Exemplo da gmp_xor
- Example#2875 - Using Lapack::eigenValues:
- Example#2876 - Using Lapack::leastSquaresByFactorisation:
- Example#2877 - Using Lapack::leastSquaresBySVD:
- Example#2878 - Using Lapack::pseudoInverse:
- Example#2879 - Using Lapack::singularValues:
- Example#2880 - Using Lapack::singularValues:
- Example#2881 - Exemplo da abs
- Example#2882 - base_convert
- Example#2883 - Exemplo da bindec
- Example#2884 - ceil example
- Example#2885 - Exemplo da cos
- Example#2886 - Exemplo da decbin
- Example#2887 - Exemplo da dechex
- Example#2888 - Exemplo da decoct
- Example#2889 - Exemplo da deg2rad
- Example#2890 - Exemplo da exp
- Example#2891 - Exemplos de floor
- Example#2892 - Using fmod
- Example#2893 - exemplos hexdec
- Example#2894 - Exemplos de max
- Example#2895 - Exemplos de min
- Example#2896 - mt_rand example
- Example#2897 - Exemplo da mt_srand
- Example#2898 - Exemplo da octdec
- Example#2899 - Exemplo da pi
- Example#2900 - Alguns exemplos de pow
- Example#2901 - Exemplo da rad2deg
- Example#2902 - Exemplo da rand
- Example#2903 - Exemplos da round
- Example#2904 - Exemplo da sin
- Example#2905 - Exemplo da sqrt
- Example#2906 - Exemplo da srand
- Example#2907 - Exemplo da tan
- Example#2908 - Evaluating a FDF document
- Example#2909 - Adding JavaScript code to a FDF
- Example#2910 - Populating a PDF document
- Example#2911 - Storing an uploaded file
- Example#2912 - Detecting all fieldnames in a FDF
- Example#2913 - Accessing the form data
- Example#2914 - Accessing the form data
- Example#2915 - Retrieving FDF as a string
- Example#2916 - Passing FDF data to a second form
- Example#2917 - gnupg clearsign example (procedural)
- Example#2918 - gnupg clearsign example (OO)
- Example#2919 - keylistiterator
- Example#2920 - Procedural gnupg_adddecryptkey example
- Example#2921 - OO gnupg_adddecryptkey example
- Example#2922 - Procedural gnupg_addencryptkey example
- Example#2923 - OO gnupg_addencryptkey example
- Example#2924 - Procedural gnupg_addsignkey example
- Example#2925 - OO gnupg_addsignkey example
- Example#2926 - Procedural gnupg_cleardecryptkeys example
- Example#2927 - OO gnupg_cleardecryptkeys example
- Example#2928 - Procedural gnupg_clearencryptkeys example
- Example#2929 - OO gnupg_clearencryptkeys example
- Example#2930 - Procedural gnupg_clearsignkeys example
- Example#2931 - OO gnupg_clearsignkeys example
- Example#2932 - Procedural gnupg_decrypt example
- Example#2933 - OO gnupg_encrypt example
- Example#2934 - Procedural gnupg_decryptverify example
- Example#2935 - OO gnupg_decryptverify example
- Example#2936 - Procedural gnupg_encrypt example
- Example#2937 - OO gnupg_encrypt example
- Example#2938 - Procedural gnupg_encryptsign example
- Example#2939 - OO gnupg_encryptsign example
- Example#2940 - Procedural gnupg_export example
- Example#2941 - OO gnupg_export example
- Example#2942 - Procedural gnupg_geterror example
- Example#2943 - OO gnupg_geterror example
- Example#2944 - Procedural gnupg_getprotocol example
- Example#2945 - OO gnupg_getprotocol example
- Example#2946 - Procedural gnupg_import example
- Example#2947 - OO gnupg_import example
- Example#2948 - Procedural gnupg_init example
- Example#2949 - OO gnupg initializer example
- Example#2950 - Procedural gnupg_keyinfo example
- Example#2951 - OO gnupg_keyinfo example
- Example#2952 - Procedural gnupg_setarmor example
- Example#2953 - OO gnupg_setarmor example
- Example#2954 - Procedural gnupg_seterrormode example
- Example#2955 - OO gnupg_seterrormode example
- Example#2956 - Procedural gnupg_setsignmode example
- Example#2957 - OO gnupg_setsignmode example
- Example#2958 - Procedural gnupg_sign example
- Example#2959 - OO gnupg_sign example
- Example#2960 - Procedural gnupg_verify example
- Example#2961 - OO gnupg_verify example
- Example#2962 - Fancy "Hello world"
- Example#2963 - swfaction example
- Example#2964 - swfaction example
- Example#2965 - swfaction example
- Example#2966 - swfsprite example
- Example#2967 - ming_useswfversion example
- Example#2968 - Importing a DBL file
- Example#2969 - Using an alpha mask
- Example#2970 - Usual interactions with buttons
- Example#2971 - Drag example
- Example#2972 - swfdisplayitem::multcolor example
- Example#2973 - swfdisplayitem::rotateto example
- Example#2974 - swfdisplayitem::setname example
- Example#2975 - swfgradient example
- Example#2976 - swfmorph example
- Example#2977 - Displaying your $movie in a browser
- Example#2978 - Streaming example
- Example#2979 - SWFShape::addFill example
- Example#2980 - swfshape example
- Example#2981 - swfshape::setline example
- Example#2982 - swftext example
- Example#2983 - Hello World example from PDFlib distribution for PHP 4
- Example#2984 - Hello World example from PDFlib distribution for PHP 5
- Example#2985 - Creating and using a pattern
- Example#2986 - Creating and using a template
- Example#2987 - Hyphennate a text
- Example#2988 - Drawing a rectangle
- Example#2989 - Creating and using a spot color
- Example#2990 - Rotation of the coordinate system
- Example#2991 - Placing text at a given position
- Example#2992 - Drawing a dashed line
- Example#2993 - Translation of the coordinate system
- Example#2994 - Basic RPMReader Example
- Example#2995 - rpm_close example
- Example#2996 - rpm_get_tag example
- Example#2997 - rpm_is_valid example
- Example#2998 - rpm_open example
- Example#2999 - rpm_version example
- Example#3000 - Exemplo da SWF
- Example#3001 - swf_addbuttonrecord example
- Example#3002 - Creating a simple flash file based on user input and outputting it
and saving it in a database
- Example#3003 - Horizontal text example
- Example#3004 - A simple 3D-rotation around a text
- Example#3005 - Incorrect requests
- Example#3006 - Calling request from a request callback
- Example#3007 - Calling request from a request callback
- Example#3008 - Using eio with libevent
- Example#3009 - Cancelling a request
- Example#3010 - Calling eio_chmod
- Example#3011 - Making a custom request
- Example#3012 - Grouping requests
- Example#3013 - Using eio with libevent
- Example#3014 - eio_cancel example
- Example#3015 - eio_custom example
- Example#3016 - eio_event_loop example
- Example#3017 - eio_lstat example
- Example#3018 - Using eio with libevent
- Example#3019 - Grouping requests
- Example#3020 - eio_grp example
- Example#3021 - eio_link example
- Example#3022 - eio_lstat example
- Example#3023 - eio_mkdir example
- Example#3024 - eio_mknod example
- Example#3025 - eio_nreqs example
- Example#3026 - eio_open example
- Example#3027 - eio_poll example
- Example#3028 - eio_read example
- Example#3029 - eio_readdir example
- Example#3030 - eio_readlink example
- Example#3031 - eio_realpath example
- Example#3032 - eio_rename example
- Example#3033 - eio_rmdir example
- Example#3034 - eio_stat example
- Example#3035 - eio_statvfs example
- Example#3036 - eio_symlink example
- Example#3037 - Expect Usage Example
- Example#3038 - Another Expect Usage Example
- Example#3039 - expect_expectl example
- Example#3040 - expect_popen example
- Example#3041 - polling STDIN using basic API
- Example#3042 - polling STDIN using buffered event API
- Example#3043 - Process Control Example
- Example#3044 - pcntl_fork example
- Example#3045 - pcntl_signal_dispatch example
- Example#3046 - pcntl_signal example
- Example#3047 - pcntl_sigprocmask example
- Example#3048 - pcntl_sigwaitinfo example
- Example#3049 - posix_access example
- Example#3050 - posix_ctermid example
- Example#3051 - posix_get_last_error example
- Example#3052 - posix_getcwd example
- Example#3053 - posix_getegid example
- Example#3054 - posix_geteuid example
- Example#3055 - posix_getgid example
- Example#3056 - Example use of posix_getgrgid
- Example#3057 - Example use of posix_getgrnam
- Example#3058 - Example use of posix_getgroups
- Example#3059 - Example use of posix_getlogin
- Example#3060 - Example use of posix_getpgid
- Example#3061 - Example use of posix_getpid
- Example#3062 - Example use of posix_getppid
- Example#3063 - Example use of posix_getpwnam
- Example#3064 - Example use of posix_getpwuid
- Example#3065 - Example use of posix_getrlimit
- Example#3066 - Example use of posix_getsid
- Example#3067 - Example use of posix_getuid
- Example#3068 - A posix_mknod example
- Example#3069 - posix_setegid example
- Example#3070 - posix_setgid example
- Example#3071 - posix_setuid example
- Example#3072 - posix_strerror example
- Example#3073 - Example use of posix_times
- Example#3074 - Example use of posix_uname
- Example#3075 - Exemplo escapeshellarg
- Example#3076 - Exemplo escapeshellcmd
- Example#3077 - Um exemplo exec
- Example#3078 - Um exemplo proc_open
- Example#3079 - Um exemplo da shell_exec
- Example#3080 - Exemplo da system
- Example#3081 -
- Example#3082 - Visão Geral de Operações de Memória Compartilhada
- Example#3083 - Fechando um bloco de memória compartilhada
- Example#3084 - Deletando um bloco de memória compartilhada
- Example#3085 - Cria um novo bloco de memória compartilhada
- Example#3086 - Lendo um bloco de memória compartilhada
- Example#3087 - Pegando o tamanho do bloco de memória compartilhada
- Example#3088 - Escrevendo em um bloco de memória compartilhada
- Example#3089 - A geoip_continent_code_by_name example
- Example#3090 - A geoip_country_code_by_name example
- Example#3091 - A geoip_country_code3_by_name example
- Example#3092 - A geoip_country_name_by_name example
- Example#3093 - A geoip_region_by_name example
- Example#3094 - A geoip_db_avail example
- Example#3095 - A geoip_db_filename example
- Example#3096 - A geoip_db_get_all_info example
- Example#3097 - A geoip_db_get_all_info example
- Example#3098 - A geoip_id_by_name example
- Example#3099 - A geoip_isp_by_name example
- Example#3100 - A geoip_org_by_name example
- Example#3101 - A geoip_record_by_name example
- Example#3102 - A geoip_region_by_name example
- Example#3103 - A geoip_region_name_by_code example using region code for US/Canada
- Example#3104 - A geoip_region_name_by_code example using FIPS codes
- Example#3105 - A geoip_time_zone_by_country_and_region example using region code for US/Canada
- Example#3106 - A geoip_time_zone_by_country_and_region example using FIPS codes
- Example#3107 - json_decode exemplos
- Example#3108 - Um outro exemplo
- Example#3109 - Um exemplo da json_encode
- Example#3110 - json_last_error example
- Example#3111 - json_last_error with json_encode
- Example#3112 - Judy array example
- Example#3113 - Lua::assignexample
- Example#3114 - Lua::callexample
- Example#3115 - Lua::evalexample
- Example#3116 - Lua::registerCallbackexample
- Example#3117 - LuaClosure::__invokeexample
- Example#3118 - Exemplo da constant
- Example#3119 - Definindo Constantes
- Example#3120 - Conferindo Constantes
- Example#3121 - Exemplo
eval
- Example#3122 - Exemplo exit
- Example#3123 - Exemplo exit com código de estado
- Example#3124 - Exemplo get_browser
- Example#3125 - A __halt_compiler example
- Example#3126 - Criando uma URL para destaque da sintaxe
- Example#3127 - Exemplo highlight_string
- Example#3128 - pack example
- Example#3129 - Exemplo da php_strip_whitespace
- Example#3130 - Exemplo da sleep
- Example#3131 - A sys_getloadavg example
- Example#3132 - Exemplo da time_nanosleep
- Example#3133 - Um exemplo da time_sleep_until
- Example#3134 - unpack example
- Example#3135 - unpack example with a repeater
- Example#3136 - unpack example with unnamed keys
- Example#3137 - Exemplo da usleep
- Example#3138 - Exemplo da parsekit_compile_file
- Example#3139 - Exemplo da parsekit_compile_string
- Example#3140 - parsekit_func_arginfo example
- Example#3141 - SplDoublyLinkedList::__construct example
- Example#3142 - SplStack::__construct example
- Example#3143 - SplQueue::__construct example
- Example#3144 - Efficiently handling tasks with SplQueue
- Example#3145 - SplFixedArray usage example
- Example#3146 - SplFixedArray::__construct example
- Example#3147 - SplFixedArray::count example
- Example#3148 - SplFixedArray::fromArray example
- Example#3149 - SplFixedArray::getSize example
- Example#3150 - SplFixedArray::setSize example
- Example#3151 - SplFixedArray::toArray example
- Example#3152 - SplObjectStorage as a set
- Example#3153 - SplObjectStorage as a map
- Example#3154 - SplObjectStorage::addAll example
- Example#3155 - SplObjectStorage::attach example
- Example#3156 - SplObjectStorage::contains example
- Example#3157 - SplObjectStorage::count example
- Example#3158 - SplObjectStorage::current example
- Example#3159 - SplObjectStorage::detach example
- Example#3160 - SplObjectStorage::getHash example
- Example#3161 - SplObjectStorage::getInfo example
- Example#3162 - SplObjectStorage::key example
- Example#3163 - SplObjectStorage::next example
- Example#3164 - SplObjectStorage::offsetExists example
- Example#3165 - SplObjectStorage::offsetGet example
- Example#3166 - SplObjectStorage::offsetSet example
- Example#3167 - SplObjectStorage::offsetUnset example
- Example#3168 - SplObjectStorage::removeAll example
- Example#3169 - SplObjectStorage::removeAllExcept example
- Example#3170 - SplObjectStorage::rewind example
- Example#3171 - SplObjectStorage::serialize example
- Example#3172 - SplObjectStorage::setInfo example
- Example#3173 - SplObjectStorage::unserialize example
- Example#3174 - SplObjectStorage::valid example
- Example#3175 - AppendIterator::append example
- Example#3176 - Iterating AppendIterator with foreach
- Example#3177 - Iterating AppendIterator with the AppendIterator API
- Example#3178 - AppendIterator::getInnerIterator example
- Example#3179 - AppendIterator.getIteratorIndex basic example
- Example#3180 - AppendIterator::key basic example
- Example#3181 - Exemplo de ArrayIterator::current
- Example#3182 - Exemplo de ArrayIterator::key
- Example#3183 - Exemplo de ArrayIterator::next
- Example#3184 - Exemplo de ArrayIterator::rewind
- Example#3185 - Exemplo de ArrayIterator::valid
- Example#3186 - Available callback arguments
- Example#3187 - Callback basic examples
- Example#3188 - Exemplo do DirectoryIterator::getBasename
- Example#3189 - Exemplo do DirectoryIterator::getExtension
- Example#3190 - Exemplo do DirectoryIterator::seek
- Example#3191 - Exemplo do DirectoryIterator::__toString
- Example#3192 - FilesystemIterator::__construct example
- Example#3193 - FilesystemIterator::current example
- Example#3194 - FilesystemIterator::key example
- Example#3195 - FilesystemIterator::next example
- Example#3196 - FilesystemIterator::rewind example
- Example#3197 - FilesystemIterator::key example
- Example#3198 - FilterIterator::accept example
- Example#3199 - GlobIterator example
- Example#3200 - GlobIterator::count example
- Example#3201 - InfiniteIterator::__construct example
- Example#3202 - LimitIterator usage example
- Example#3203 - LimitIterator::__construct example
- Example#3204 - Iterating a MultipleIterator
- Example#3205 - NoRewindIterator::__construct example
- Example#3206 - NoRewindIterator::rewind example
- Example#3207 - RecursiveArrayIterator::getChildren example
- Example#3208 - RecursiveArrayIterator::hasChildren example
- Example#3209 - Available callback arguments
- Example#3210 - Recursive callback basic example
- Example#3211 - RecursiveCallbackFilterIterator::hasChildren basic usage
- Example#3212 - RecursiveDirectoryIterator example
- Example#3213 - Basic RecursiveFilterIterator example
- Example#3214 - RecursiveFilterIterator example
- Example#3215 - Iterating a RecursiveIteratorIterator
- Example#3216 - RecursiveRegexIterator::__construct example
- Example#3217 - RecursiveRegexIterator::getChildren example
- Example#3218 - RecursiveRegexIterator::hasChildren example
- Example#3219 - RegexIterator::accept example
- Example#3220 - RegexIterator::__construct example
- Example#3221 - RegexIterator::getFlags example
- Example#3222 - RegexIterator::getMode example
- Example#3223 - RegexIterator::getPregFlags example
- Example#3224 - RegexIterator::setFlags example
- Example#3225 - RegexIterator::setMode example
- Example#3226 - RegexIterator::setPregFlags example
- Example#3227 - Countable::count example
- Example#3228 - Basic usage
- Example#3229 - SeekableIterator::seek example
- Example#3230 - Exemplo de class_implements
- Example#3231 - Exemplo de class_parents
- Example#3232 - class_uses example
- Example#3233 - iterator_apply example
- Example#3234 - Exemplo despl_classes
- Example#3235 - Exemplo de spl_object_hash
- Example#3236 - SplFileInfo::__construct example
- Example#3237 - SplFileInfo::getBasename example
- Example#3238 - SplFileInfo::getCTime example
- Example#3239 - SplFileInfo::getExtension example
- Example#3240 -
- Example#3241 - SplFileInfo::getFilename example
- Example#3242 - SplFileInfo::getGroup example
- Example#3243 - SplFileInfo::getLinkTarget example
- Example#3244 - SplFileInfo::getOwner example
- Example#3245 - SplFileInfo::getPath example
- Example#3246 - SplFileInfo::getPathInfo example
- Example#3247 - SplFileInfo::getPathname example
- Example#3248 - SplFileInfo::getPerms example
- Example#3249 - SplFileInfo::getRealPath example
- Example#3250 - SplFileInfo::getType example
- Example#3251 - SplFileInfo::isDir example
- Example#3252 - SplFileInfo::isExecutable example
- Example#3253 - SplFileInfo::isFile example
- Example#3254 - SplFileInfo::isLink example
- Example#3255 - SplFileInfo::isReadable example
- Example#3256 - SplFileInfo::openFile example
- Example#3257 - SplFileInfo::setFileClass example
- Example#3258 - SplFileInfo::setFileClass example
- Example#3259 - SplFileInfo::__toString example
- Example#3260 - SplFileObject::__construct example
- Example#3261 - SplFileObject::current example
- Example#3262 - SplFileObject::eof example
- Example#3263 - SplFileObject::fflush example
- Example#3264 - SplFileObject::fgetc example
- Example#3265 - SplFileObject::fgetcsv example
- Example#3266 - SplFileObject::READ_CSV example
- Example#3267 - SplFileObject::fgets example
- Example#3268 - SplFileObject::fgetss example
- Example#3269 - SplFileObject::flock example
- Example#3270 - SplFileObject::fpassthru example
- Example#3271 - SplFileObject::fputcsv example
- Example#3272 - SplFileObject::fscanf example
- Example#3273 - SplFileObject::fseek example
- Example#3274 - SplFileObject::fstat example
- Example#3275 - SplFileObject::ftell example
- Example#3276 - SplFileObject::ftruncate example
- Example#3277 - SplFileObject::fwrite example
- Example#3278 - SplFileObject::getCsvControl example
- Example#3279 - SplFileObject::getFlags example
- Example#3280 - SplFileObject::getMaxLineLen example
- Example#3281 - SplFileObject::key example
- Example#3282 - SplFileObject::key example with SplFileObject::setMaxLineLen
- Example#3283 - SplFileObject::next example
- Example#3284 - SplFileObject::rewind example
- Example#3285 - SplFileObject::seek example
- Example#3286 - SplFileObject::setCsvControl example
- Example#3287 - SplFileObject::setFlags example
- Example#3288 - SplFileObject::setMaxLineLen example
- Example#3289 - SplFileObject::valid example
- Example#3290 - SplTempFileObject example
- Example#3291 - ArrayObject::asort example
- Example#3292 - Exemplo de ArrayObject::__construct
- Example#3293 - ArrayObject::exchangeArray example
- Example#3294 - ArrayObject::getArrayCopy example
- Example#3295 - ArrayObject::getFlags example
- Example#3296 - Exemplo de ArrayObject::getIterator
- Example#3297 - ArrayObject::getIteratorClass example
- Example#3298 - ArrayObject::ksort example
- Example#3299 - ArrayObject::natcasesort example
- Example#3300 - ArrayObject::natsort example
- Example#3301 - ArrayObject::serialize example
- Example#3302 - ArrayObject::setFlags example
- Example#3303 - ArrayObject::setIteratorClass example
- Example#3304 - ArrayObject::uasort example
- Example#3305 - ArrayObject::uksort example
- Example#3306 - SplInt usage example
- Example#3307 - SplFloat usage example
- Example#3308 - SplEnum usage example
- Example#3309 - SplEnum::getConstList example
- Example#3310 - SplBool usage example
- Example#3311 - SplString usage example
- Example#3312 - Using file_get_contents
to retrieve data from multiple sources
- Example#3313 - Making a POST request to an https server
- Example#3314 - Writing data to a compressed file
- Example#3315 - A Stream for reading/writing global variables
- Example#3316 - Listing files from tar archives
- Example#3317 - stream_bucket_prepend examples
- Example#3318 - Using stream_context_create
- Example#3319 - Using stream_context_get_default
- Example#3320 - stream_context_get_options example
- Example#3321 - stream_context_get_params example
- Example#3322 - stream_context_set_default example
- Example#3323 - A stream_copy_to_stream example
- Example#3324 - Controlling where filters are applied
- Example#3325 - Filter for capitalizing characters on foo-bar.txt stream
- Example#3326 - Registering a generic filter class to match multiple filter names.
- Example#3327 - Dynamicly refiltering a stream
- Example#3328 - stream_get_contents example
- Example#3329 - Using stream_get_filters
- Example#3330 - stream_get_meta_data example
- Example#3331 - Using stream_get_transports
- Example#3332 - stream_get_wrappers example
- Example#3333 - Checking for the existence of a stream wrapper
- Example#3334 - stream_is_local example
- Example#3335 - stream_notification_callback example
- Example#3336 - Simple progressbar for commandline download client
- Example#3337 - stream_resolve_include_path example
- Example#3338 - stream_select Example
- Example#3339 - stream_set_timeout example
- Example#3340 - stream_set_write_buffer example
- Example#3341 - stream_socket_client example
- Example#3342 - Using UDP connection
- Example#3343 - stream_socket_enable_crypto example
- Example#3344 - A stream_socket_pair example
- Example#3345 - stream_socket_recvfrom example
- Example#3346 - stream_socket_sendto Example
- Example#3347 - Using TCP server sockets
- Example#3348 - Using UDP server sockets
- Example#3349 - A stream_socket_shutdown example
- Example#3350 - How to register a stream wrapper
- Example#3351 - instalação do tidy manualmente no PHP 4.3.x
- Example#3352 - Básico uso do Tidy
- Example#3353 - ob_tidyhandler example
- Example#3354 - tidy_access_count example
- Example#3355 - tidy_config_count example
- Example#3356 - tidy_error_count example
- Example#3357 - tidy_get_output example
- Example#3358 - tidy_setopt example
- Example#3359 - tidy_warning_count example
- Example#3360 - Retirando os comentários com o tokenizer
- Example#3361 - Exemplo de uso de token_get_all
- Example#3362 - Exemplo de token_name
- Example#3363 - Exemplo da base64_decode
- Example#3364 - Exemplo base64_encode
- Example#3365 - Exemplo de uso de get_headers
- Example#3366 - O que get_meta_tags interpreta
- Example#3367 - O que get_meta_tags retorna
- Example#3368 - Exemplo de uso de http_build_query
- Example#3369 - http_build_query com elementos indexados numericamente.
- Example#3370 - http_build_query com arrays complexos
- Example#3371 - Usando http_build_query com um objeto
- Example#3372 - Exemplo parse_url
- Example#3373 - Exemplo da rawurldecode
- Example#3374 - Incluindo uma senha em uma URL de FTP
- Example#3375 - Exemplo 2 de rawurlencode
- Example#3376 - Exemplo da urldecode
- Example#3377 - Exemplo urlencode
- Example#3378 - Exemplo urlencode e htmlentities
- Example#3379 - Basic Javascript execution
- Example#3380 - Yaml Example
- Example#3381 - Parse callback example
- Example#3382 - Emit callback example
- Example#3383 - yaml_emit example
- Example#3384 - yaml_parse example
- Example#3385 - A classic Application directory layout
- Example#3386 - Entry
- Example#3387 - Rewrite rule
- Example#3388 - Application config
- Example#3389 - Default controller
- Example#3390 - Default view template
- Example#3391 - Run the Applicatioin
- Example#3392 - An array of yaf configuration example
- Example#3393 - an ini file of yaf configuration example
- Example#3394 - A Bootstrapexample
- Example#3395 - Yaf_Application::bootstrapexample
- Example#3396 - Yaf_Application::clearLastErrorexample
- Example#3397 - A ini config file example
- Example#3398 - Yaf_Application::__constructexample
- Example#3399 - Yaf_Application::__constructexample
- Example#3400 - Yaf_Application::environexample
- Example#3401 - Yaf_Application::executeexample
- Example#3402 - Yaf_Application::getConfigexample
- Example#3403 - Yaf_Application::getDispatcherexample
- Example#3404 - Yaf_Application::getLastErrorMsgexample
- Example#3405 - Yaf_Application::getLastErrorNoexample
- Example#3406 - Yaf_Application::getModulesexample
- Example#3407 - Yaf_Dispatcher::autoRenderexample
- Example#3408 - Yaf_Dispatcher::catchExceptionexample
- Example#3409 - Yaf_Dispatcher::registerPluginexample
- Example#3410 - A custom View engineexample
- Example#3411 - Yaf_Dispatcher::setViewexample
- Example#3412 - Yaf_Config_Iniexample
- Example#3413 - define action in a separate file
- Example#3414 - Dummy_action.php
- Example#3415 - Yaf_Action_Abstract::executeexample
- Example#3416 - Yaf_Action_Abstract::executeexample
- Example#3417 - Yaf_View_Simple::assignexample
- Example#3418 - templateexample
- Example#3419 - Yaf_View_Simple::assignRefexample
- Example#3420 - templateexample
- Example#3421 - Yaf_View_Simple::clearexample
- Example#3422 - Yaf_View_Simple::__constructorexample
- Example#3423 - Yaf_View_Simple::__setexample
- Example#3424 - Config example
- Example#3425 - Register localnamespace
- Example#3426 - Load class example
- Example#3427 - Load namespace class example
- Example#3428 - MVC class loading example
- Example#3429 - MVC class distinctions
- Example#3430 - MVC loading example
- Example#3431 - Yaf_Plugin_Abstract::routerShutdownexample
- Example#3432 - Yaf_Route_Mapexample
- Example#3433 - Yaf_Route_Mapexample
- Example#3434 - Yaf_Route_Mapexample
- Example#3435 - Yaf_Route_Regexexample
- Example#3436 - Yaf_Route_Regexexample
- Example#3437 - Yaf_Route_Rewriteexample
- Example#3438 - Yaf_Route_Rewriteexample
- Example#3439 - Rewrite rule for Apache
- Example#3440 - Rewrite rule for Apache
- Example#3441 - Rewrite rule for Lighttpd
- Example#3442 - Rewrite rule for Nginx
- Example#3443 - Yaf_Route_Static(default
route)example
- Example#3444 - application.iniexample
- Example#3445 - Yaf_Dispatcher::autoConfigexample
- Example#3446 - Yaf_Dispatcher::autoRenderexample
- Example#3447 - Register some routes in Bootstrap
- Example#3448 - plugin Dummy.php (under application.directory/plugins)
- Example#3449 - Yaf_Route_Simple::routeexample
- Example#3450 - Yaf_Route_Simple::routeexample
- Example#3451 - Yaf_Route_Static::routeexample
- Example#3452 - Yaf_Route_Supervarexample
- Example#3453 - Taintexample
- Example#3454 - AMQP Example
- Example#3455 - AMQPConnection::connect example
- Example#3456 - AMQPConnection::__construct example
- Example#3457 - AMQPConnection::disconnect example
- Example#3458 - AMQPConnection::isConnected example
- Example#3459 - AMQPConnection::reconnect example
- Example#3460 - AMQPConnection::setHost example
- Example#3461 - AMQPConnection::setLogin example
- Example#3462 - AMQPConnection::setPassword example
- Example#3463 - AMQPConnection::setPort example
- Example#3464 - AMQPConnection::setVhost example
- Example#3465 - AMQPExchange::declare example
- Example#3466 - AMQPExchange::delete example
- Example#3467 - AMQPQueue::ack example with AMQPQueue::get
- Example#3468 - AMQPQueue::ack example with AMQPQueue::consume
- Example#3469 - AMQPQueue::consume example
- Example#3470 - AMQPQueue::get example
- Example#3471 - Creating a chdb file
- Example#3472 - Loading and looking up a chdb file
- Example#3473 - chdb::get example
- Example#3474 - chdb_create example
- Example#3475 - Usando o módulo cURL do PHP para pegar o conteúdo de exemplo.com.br
- Example#3476 - Iniciando uma nova sessão cURL e acessando uma página web
- Example#3477 - Copiando um controlador cURL
- Example#3478 - Exemplo de curl_errno
- Example#3479 - curl_error example
- Example#3480 - Fetching a web page
- Example#3481 - curl_getinfo example
- Example#3482 - Initializing a new cURL session and fetching a web page
- Example#3483 - curl_multi_add_handle example
- Example#3484 - curl_multi_close example
- Example#3485 - curl_multi_exec example
- Example#3486 - A curl_multi_info_read example
- Example#3487 - curl_multi_init example
- Example#3488 - Initializing a new cURL session and fetching a web page
- Example#3489 - Our own implementation of curl_setopt_array
- Example#3490 - Initializing a new cURL session and fetching a web page
- Example#3491 - Uploading file
- Example#3492 - curl_version example
- Example#3493 - Exemplo da FTP
- Example#3494 - Um exemplo de ftp_alloc
- Example#3495 - Exemplo ftp_cdup
- Example#3496 - Exemplo ftp_chdir
- Example#3497 - Exemplo ftp_chmod
- Example#3498 - Exemplo ftp_close
- Example#3499 - ftp_connect example
- Example#3500 - Exemplo ftp_delete
- Example#3501 - Exemplo ftp_exec
- Example#3502 - Exemplo ftp_fget
- Example#3503 - Exemplo de ftp_fput
- Example#3504 - Exemplo ftp_get_option
- Example#3505 - Exemplo ftp_get
- Example#3506 - Exemplo ftp_login
- Example#3507 - Exemplo ftp_mdtm
- Example#3508 - Exemplo ftp_mkdir
- Example#3509 - Exemplo ftp_nb_continue
- Example#3510 - Exemplo ftp_nb_fget
- Example#3511 - Exemplo ftp_nb_fput
- Example#3512 - Exemplo ftp_nb_get
- Example#3513 - Continuando um download com ftp_nb_get
- Example#3514 - Continuando um download na posição 100 para um
novo arquivo com ftp_nb_get
- Example#3515 - Exemplo ftp_nb_put
- Example#3516 - Continuando um upload com ftp_nb_put
- Example#3517 - Exemplo ftp_nlist
- Example#3518 - Exemplo ftp_pasv
- Example#3519 - Exemplo ftp_put
- Example#3520 - Exemplo ftp_pwd
- Example#3521 - Usando ftp_raw para fazer o login em um servidor FTP manualmente.
- Example#3522 - Exemplo ftp_rawlist
- Example#3523 - Exemplo ftp_rename
- Example#3524 - Exemplo ftp_rmdir
- Example#3525 - Exemplo ftp_set_option
- Example#3526 - Enviando um comando SITE para um servidor FTP
- Example#3527 - Exemplo ftp_size
- Example#3528 - Exemplo ftp_ssl_connect
- Example#3529 - Exemplo ftp_systype
- Example#3530 - Basic Gearman client and worker
- Example#3531 - Basic Gearman client and worker, background
- Example#3532 - Basic Gearman client and worker, submitting tasks
- Example#3533 - Adding two job servers
- Example#3534 - Add two job servers
- Example#3535 - Basic submission of two tasks
- Example#3536 - Basic submission of two tasks with passing application context
- Example#3537 - Two tasks, one background and one not
- Example#3538 - A high priority task along with two normal tasks
- Example#3539 - A low priority task along with two normal tasks
- Example#3540 - Monitor completion of multiple background tasks
- Example#3541 - Simple job submission with immediate return
- Example#3542 - Submitting a job and retrieving incremental status
- Example#3543 - Submit and monitor a background job
- Example#3544 - Simple job submission with immediate return
- Example#3545 - Submitting a job and retrieving incremental status
- Example#3546 - Get the status of a long running job
- Example#3547 - Monitor the status of a long running background job
- Example#3548 - Simple worker making use of extra application context data
- Example#3549 - Add alternate Gearman servers
- Example#3550 - Add two job servers
- Example#3551 - A simple worker with a 5 second timeout
- Example#3552 - Running worker in non-blocking mode
- Example#3553 - GearmanWorker::work example
- Example#3554 - Hypothetical output from gopher://gopher.example.com/
- Example#3555 - Using gopher_parsedir
- Example#3556 - Search for all UPnP devices and services.
- Example#3557 - Implementing light server
- Example#3558 - Implementing light client
- Example#3559 - Create new UPnP context and get IP address of the host
- Example#3560 - Create new UPnP context and get port number
- Example#3561 - Create new UPnP context and set host path
- Example#3562 - Create new UPnP context
- Example#3563 - Create new UPnP context and set callback
- Example#3564 - Create new UPnP context and start browsing
- Example#3565 - Create new UPnP context and start browsing
- Example#3566 - Create new UPnP context and get device info service
- Example#3567 - Create new UPnP context and get device info service
- Example#3568 - A HttpDeflateStream example
- Example#3569 - A HttpInflateStream example
- Example#3570 - A HttpRequest::addCookies example
- Example#3571 - GET example
- Example#3572 - POST example
- Example#3573 - A HttpRequestPool example
- Example#3574 - A HttpRequestPool::socketPerform example
- Example#3575 - A HttpResponse::capture example
- Example#3576 - A HttpResponse::send example
- Example#3577 - A http_cache_etag example
- Example#3578 - A http_cache_last_modified example
- Example#3579 - A http_chunked_decode example
- Example#3580 - A http_support example
- Example#3581 - Using http_negotiate_charset
- Example#3582 - Using http_negotiate_content_type
- Example#3583 - Using http_negotiate_language
- Example#3584 - Using http_parse_cookie
- Example#3585 - Using http_parse_headers
- Example#3586 - Using http_parse_message
- Example#3587 - A http_parse_params example
- Example#3588 - A http_persistent_handles_count example
- Example#3589 - A http_persistent_handles_ident example
- Example#3590 - A http_get example
- Example#3591 - A http_post_fields example
- Example#3592 - A http_redirect example
- Example#3593 - A http_send_file example
- Example#3594 - A http_throttle example
- Example#3595 - A http_build_url example
- Example#3596 - modifying an attribute
- Example#3597 - adding a completely new attribute
- Example#3598 - modifying Title attribute
- Example#3599 - modifying Title attribute
- Example#3600 - removing attribute
- Example#3601 - Retrieve an object
- Example#3602 - Exemplo da Java
- Example#3603 - Exemplo da AWT
- Example#3604 - Tratador de exceção Java
- Example#3605 - LDAP search example
- Example#3606 - Complete example with authenticated bind
- Example#3607 - Using LDAP Bind
- Example#3608 - Using LDAP Bind Anonymously
- Example#3609 - Complete example of password check
- Example#3610 - Example of connecting to LDAP server.
- Example#3611 - Example of connecting securely to LDAP server.
- Example#3612 - LDAP pagination
- Example#3613 - LDAP pagination
- Example#3614 - ldap-count-entries example
- Example#3615 - Enumerating all LDAP error messages
- Example#3616 - Generating and catching an error
- Example#3617 - Show the list of attributes held for a particular directory entry
- Example#3618 - Check protocol version
- Example#3619 - List all values of the "mail" attribute for a
directory entry
- Example#3620 - Produce a list of all organizational units of an organization
- Example#3621 - LDAP search
- Example#3622 - Set protocol version
- Example#3623 - Set server controls
- Example#3624 - LDAP sort
- Example#3625 - memcache extension overview example
- Example#3626 - Using memcache session handler
- Example#3627 - Memcache::add example
- Example#3628 - Memcache::addServer example
- Example#3629 - Memcache::close example
- Example#3630 - Memcache::connect example
- Example#3631 - Memcache::decrement example
- Example#3632 - Memcache::delete example
- Example#3633 - Memcache::flush example
- Example#3634 - Memcache::get example
- Example#3635 - Memcache::getExtendedStats example
- Example#3636 - Memcache::getServerStatus example
- Example#3637 - Memcache::getVersion example
- Example#3638 - Memcache::increment example
- Example#3639 - Memcache::pconnect example
- Example#3640 - Memcache::replace example
- Example#3641 - Memcache::set example
- Example#3642 - Memcache::set example
- Example#3643 - Memcache::setCompressThreshold example
- Example#3644 - Memcache::setServerParams example
- Example#3645 - Result callback example
- Example#3646 - Read-through callback example
- Example#3647 - Memcached::addServer example
- Example#3648 - Memcached::addServers example
- Example#3649 - Memcached::append example
- Example#3650 - Memcached::cas example
- Example#3651 - Creating a Memcached object
- Example#3652 - Memcached::decrement example
- Example#3653 - Memcached::delete example
- Example#3654 - Memcached::fetch example
- Example#3655 - Memcached::getDelayed example
- Example#3656 - Memcached::flush example
- Example#3657 - Memcached::get example #1
- Example#3658 - Memcached::get example #2
- Example#3659 - Memcached::getDelayed example
- Example#3660 - Memcached::getMulti example
- Example#3661 - Memcached::GET_PRESERVE_ORDER example
- Example#3662 - Retrieving Memcached options
- Example#3663 - Memcached::getResultCode example
- Example#3664 - Memcached::getResultMessage example
- Example#3665 - Memcached::getServerByKey example
- Example#3666 - Memcached::getServerList example
- Example#3667 - Memcached::getStats example
- Example#3668 - Memcached::getVersion example
- Example#3669 - Memcached::increment example
- Example#3670 - Memcached::prepend example
- Example#3671 - Memcached::set example
- Example#3672 - Memcached::setByKey example
- Example#3673 - Memcached::setMulti example
- Example#3674 - Setting a Memcached option
- Example#3675 - mqseries_back
example
- Example#3676 - mqseries_begin
example
- Example#3677 - mqseries_close
example
- Example#3678 - mqseries_cmit
example
- Example#3679 - mqseries_conn
example
- Example#3680 - mqseries_connx
example
- Example#3681 - mqseries_disc
example
- Example#3682 - mqseries_get
example
- Example#3683 - mqseries_inq
example
- Example#3684 - mqseries_open
example
- Example#3685 - mqseries_put
example
- Example#3686 - mqseries_strerror
example
- Example#3687 - define_syslog_variables example
- Example#3688 - Using dns_get_record
- Example#3689 - Using dns_get_record and DNS_ANY
- Example#3690 - fsockopen Exemplo
- Example#3691 - Utilizando conexão UDP
- Example#3692 - Um simples exemplo de gethostbyaddr
- Example#3693 - A simple gethostbyname example
- Example#3694 - gethostbynamel example
- Example#3695 - A simple gethostname example
- Example#3696 - getprotobyname example
- Example#3697 - getservbyname example
- Example#3698 - header_register_callback example
- Example#3699 - Unsetting specific header.
- Example#3700 - Unsetting all previously set headers.
- Example#3701 - Download dialog
- Example#3702 - Caching directives
- Example#3703 - Examples using headers_list
- Example#3704 - Examples using headers_sent
- Example#3705 - Examples using headers_list
- Example#3706 - inet_ntop Example
- Example#3707 - inet_pton Example
- Example#3708 - ip2long Example
- Example#3709 - Displaying an IP address
- Example#3710 - Exemplo de setcookie para enviar cookies
- Example#3711 - Exemplo de setcookie para deletar cookies
- Example#3712 - setcookie e arrays
- Example#3713 - Using syslog
- Example#3714 - Procedural usage of rrd
- Example#3715 - OO usage of rrd
- Example#3716 - RRDGraph::setOptions examples
- Example#3717 - RRDUpdater::update examples
- Example#3718 - Creating a connection and connecting to a remote WebSphere MQSeries Messaging Server
- Example#3719 - Creating a connection and connecting to a remote WebSphere Application Server
- Example#3720 - Creating a connection and connecting to an MQTT server
- Example#3721 - Creating a message with a simple text body
- Example#3722 - Setting a text format property using the default syntax
- Example#3723 - Setting a property using a type hint
- Example#3724 - Retrieving a property from a message header
- Example#3725 - Adding a message to a queue and receiving a response
- Example#3726 - Creating a durable subscription to a topic
- Example#3727 - Subscribing to a topic using a WebSphere Platform Messaging (WPM) server
- Example#3728 - Receiving published data using a durable subscription
- Example#3729 - Deleting a durable subscription to a topic
- Example#3730 - Handling an error from a method that returns no result
- Example#3731 - Handling an error from a method that returns a result
- Example#3732 - Committing the current unit of work
- Example#3733 - Creating a connection to a Messaging Server using the IBM MQSeries
protocol (WMQ)
- Example#3734 - Creating a connection with application transaction control and default
host and port values
- Example#3735 - Creating a connection to a Messaging Server using the IBM WebSphere
Platform Messaging protocol (WPM)
- Example#3736 - Creating a connection object and connecting to a Messaging Server
- Example#3737 - Disconnecting from a Messaging Server
- Example#3738 - Using the error number and description properties
- Example#3739 - Using the error number and description properties
- Example#3740 - Checking whether there us a connection to a Messaging Server
- Example#3741 - Retrieve the next message from a queue without removing it
- Example#3742 - Retrieve a specific message from a queue without removing it from the queue
- Example#3743 - Retrieve all messages in a queue without removing them
- Example#3744 - Retrieve all messages from a queue with a matching correlation id
- Example#3745 - Receiving a message from a queue
- Example#3746 - Receiving a message from a queue with options
- Example#3747 - Receiving a message from a subscription
- Example#3748 - Removing a message from a queue by message id
- Example#3749 - Cancelling an in-flight unit of work
- Example#3750 - Send a message to a queue
- Example#3751 - Publish a message to a topic
- Example#3752 - Send a request and receive a response
- Example#3753 - Turn on debugging output
- Example#3754 - Turn off debugging output
- Example#3755 - Subscribe to a topic
- Example#3756 - Delete a subscription
- Example#3757 - Setting a text string into the body of a message
- Example#3758 - Creating a message
- Example#3759 - Creating a message with a simple text payload
- Example#3760 - Setting a text format property using the default syntax
- Example#3761 - Setting a text format property using a type hint
- Example#3762 - Setting properties as the sender of a message
- Example#3763 - Retreiving property values from a message
- Example#3764 - snmp_get_quick_print example
- Example#3765 - Using snmp_get_valueretrieval
- Example#3766 - Using snmp_read_mib
- Example#3767 - Using snmp_set_enum_print
- Example#3768 - Using snmprealwalk
- Example#3769 - Using snmp_set_quick_print
- Example#3770 - Using
snmp_set_valueretrieval
- Example#3771 - Using snmp2_get
- Example#3772 - Using snmp2_get_next
- Example#3773 - Using snmp2_real_walk
- Example#3774 - Using snmp2_set
- Example#3775 - Using snmp2_set for setting BITS SNMP object id
- Example#3776 - snm2_pwalk Example
- Example#3777 - Using snmp3_get
- Example#3778 - Using snmp3_getnext
- Example#3779 - Using
snmp3_real_walk
- Example#3780 - Using snmp3_set
- Example#3781 - Using snmp3_set for setting BITS SNMP object id
- Example#3782 - snmp3_walk Example
- Example#3783 - Using snmpget
- Example#3784 - Using snmpgetnext
- Example#3785 - Using snmprealwalk
- Example#3786 - Using snmpset
- Example#3787 - Using snmpset for setting BITS SNMP object id
- Example#3788 - snmpwalk Example
- Example#3789 - snmpwalkoid Example
- Example#3790 - SNMP::close example
- Example#3791 - Fetching sysLocation
- Example#3792 - Single SNMP object
- Example#3793 - Miltiple SNMP objects
- Example#3794 - SNMP::getErrno example
- Example#3795 - SNMP::getError example
- Example#3796 - Single SNMP object
- Example#3797 - Miltiple SNMP objects
- Example#3798 - Set single SNMP object id
- Example#3799 - Set multiple values using single SNMP::set
call
- Example#3800 - Using SNMP::set for setting BITS SNMP object id
- Example#3801 - SNMP::setSecurity example
- Example#3802 - SNMP::walk example
- Example#3803 - suffix_as_key example
- Example#3804 - Exemplo de socket: Simples servidor TCP/IP
- Example#3805 - Exemplo de Socket: Simples cliente TCP/IP
- Example#3806 - socket_import_stream example
- Example#3807 - Exemplo de socket_select
- Example#3808 - Usando NULL com socket_select
- Example#3809 - Entendendo resultados de socket_select
- Example#3810 - Exemplo socket_sendto
- Example#3811 - Exemplo de socket_strerror
- Example#3812 - Authentication using a public hostkey
- Example#3813 - Retrieving a list of authentication methods
- Example#3814 - Authenticating with a password
- Example#3815 - Authentication using a public key
- Example#3816 - ssh2_connect example
- Example#3817 - Executing a command
- Example#3818 - Opening a shell and retrieving the stderr stream associated with it
- Example#3819 - Checking the fingerprint against a known value
- Example#3820 - Determining what methods were negotiated
- Example#3821 - Adding a publickey with ssh2_publickey_add
- Example#3822 - Listing authorized keys with ssh2_publickey_list
- Example#3823 - Downloading a file via SCP
- Example#3824 - Uploading a file via SCP
- Example#3825 - Stating a symbolic link via SFTP
- Example#3826 - Creating a directory on a remote server
- Example#3827 - Reading a symbolic link
- Example#3828 - Resolving a pathname
- Example#3829 - Renaming a file via sftp
- Example#3830 - Removing a directory on a remote server
- Example#3831 - Stating a file via SFTP
- Example#3832 - Creating a symbolic link
- Example#3833 - Deleting a file
- Example#3834 - Opening a file via SFTP
- Example#3835 - Executing a command
- Example#3836 - Opening a tunnel to an arbitrary host
- Example#3837 - Estilo orientado à objeto
- Example#3838 - Estilo procedural
- Example#3839 - stomp_connect_error example
- Example#3840 - stomp_version example
- Example#3841 - Estilo orientado à objeto
- Example#3842 - Estilo procedural
- Example#3843 - Estilo orientado à objeto
- Example#3844 - Estilo procedural
- Example#3845 - Estilo orientado à objeto
- Example#3846 - Estilo procedural
- Example#3847 - Estilo orientado à objeto
- Example#3848 - Estilo procedural
- Example#3849 - Estilo orientado à objeto
- Example#3850 - Estilo procedural
- Example#3851 - Estilo orientado à objeto
- Example#3852 - Estilo procedural
- Example#3853 - Estilo orientado à objeto
- Example#3854 - Estilo procedural
- Example#3855 - Estilo orientado à objeto
- Example#3856 - Estilo procedural
- Example#3857 - Estilo orientado à objeto
- Example#3858 - Estilo procedural
- Example#3859 - Train from array
- Example#3860 - Train from a file
- Example#3861 - svn_add example
- Example#3862 - Default authentication example
- Example#3863 - svn_blame example
- Example#3864 - Basic example
- Example#3865 - Basic example
- Example#3866 - Basic example
- Example#3867 - Basic example
- Example#3868 - Basic example
- Example#3869 - Basic example
- Example#3870 - Diffing two revisions of a repository path
- Example#3871 - Portably diffing two local files
- Example#3872 - svn_export example
- Example#3873 - Basic example
- Example#3874 - svn_log example
- Example#3875 - svn_ls example
- Example#3876 - Basic example
- Example#3877 - Basic example
- Example#3878 - Instalando tcpwrap manualmente
- Example#3879 - Deny all connections from localhost
- Example#3880 - Ban an URL
- Example#3881 - Get statistic snapshot
- Example#3882 - Read varnish shared memory log
- Example#3883 - VarnishAdmin::__construct example
- Example#3884 - Parallel searching using Yaz
- Example#3885 - CCL configuration
- Example#3886 - CCL Parsing
- Example#3887 - Record Update
- Example#3888 - Array for GRS-1 record
- Example#3889 - Working with MARCXML
- Example#3890 - PHP function that scans titles
- Example#3891 - Query Examples
- Example#3892 - Sort Criterias
- Example#3893 - Example for NIS errors
- Example#3894 - Example for the NIS first
- Example#3895 - Example for the default domain
- Example#3896 - Example for the NIS master
- Example#3897 - Example for NIS match
- Example#3898 - Example for NIS next
- Example#3899 - Example for the NIS order
- Example#3900 -
- Example#3901 - udm_api_version example
- Example#3902 - udm_cat_listexample
- Example#3903 - Specifying path to the current category in the following format:
'> Root > Sport > Auto > Ferrari'
- Example#3904 - udm_load_ispell_data example
- Example#3905 - udm_load_ispell_data example
- Example#3906 - solr_get_version example
- Example#3907 - Contents of the BootStrap file
- Example#3908 - Adding a document to the index
- Example#3909 - Merging one document into another document
- Example#3910 - Searching for documents - SolrObject responses
- Example#3911 - Searching for documents - SolrDocument responses
- Example#3912 - Simple TermsComponent example - basic
- Example#3913 - Simple TermsComponent example - using a prefix
- Example#3914 - Simple TermsComponent example - specifying a minimum frequency
- Example#3915 - Simple Facet Example
- Example#3916 - Simple Facet Example - with optional field override for mincount
- Example#3917 - Connecting to SSL-Enabled Server
- Example#3918 - SolrDocument::toArray example
- Example#3919 - SolrObject::__construct example
- Example#3920 - SolrObject::offsetUnset example
- Example#3921 - SolrClient::addDocument example
- Example#3922 - SolrClient::addDocuments example
- Example#3923 - SolrClient::__construct example
- Example#3924 - SolrQuery::deleteByQuery example
- Example#3925 - SolrClient::ping example
- Example#3926 - SolrClient::query example
- Example#3927 - SolrClient::request example
- Example#3928 - SolrClient::setResponseWriter example
- Example#3929 - SolrParams::setParam example
- Example#3930 - SolrQuery::addFacetField example
- Example#3931 - SolrQuery::addFilterQuery example
- Example#3932 - Basic usage example
- Example#3933 - Basic search query
- Example#3934 - A Swish::__construct example
- Example#3935 - Basic Swish::getMetaList example
- Example#3936 - Basic Swish::getPropertyList example
- Example#3937 - Basic Swish::prepare example
- Example#3938 - Basic Swish::query example
- Example#3939 - Basic SwishResult::stem example
- Example#3940 - Basic SwishResults::getParsedWords example
- Example#3941 - Basic SwishResults::nextResult example
- Example#3942 - Basic SwishResults::seekResult example
- Example#3943 - Basic SwishSearch::execute example
- Example#3944 - Basic SwishSearch::resetLimit example
- Example#3945 - Basic SwishSearch::setLimit example
- Example#3946 - Basic SwishSearch::setPhraseDelimiter example
- Example#3947 - Basic SwishSearch::setSort example
- Example#3948 - Basic SwishSearch::setStructure example
- Example#3949 - Desligando a interpretação do PHP em um diretório com o .htaccess
- Example#3950 - Exemplo de uso da função apache_get_modules
- Example#3951 - Exemplo de uso da função apache_get_version
- Example#3952 - Exemplo de uso da função apache_getenv
- Example#3953 - Exemplo da apache_lookup_uri
- Example#3954 - Exemplo apache_request_headers
- Example#3955 - apache_response_headers example
- Example#3956 - Exemplo da getallheadres
- Example#3957 - nsapi_request_headers example
- Example#3958 - Registrando uma variável com $_SESSION.
- Example#3959 - Desregistrando uma variável com $_SESSION e
register_globals desabilitado.
- Example#3960 - Contando o número de visitas de um único usuário
- Example#3961 - Example information
- Example#3962 - Exemplo da session_cache_expire
- Example#3963 - Exemplo da session_cache_limiter
- Example#3964 - Destruindo uma sessão com $_SESSION
- Example#3965 - Exemplos session_name
- Example#3966 - Exemplo session_regenerate_id
- Example#3967 - session_set_save_handler exemplo
- Example#3968 - Um exemplo de seção: page1.php
- Example#3969 - Um exemplo de seção: page2.php
- Example#3970 - Using SessionHandler to add encryption to internal PHP save handlers.
- Example#3971 - Example using SessionHandlerInterface
- Example#3972 - Exemplo de uso da bbcode_add_smiley
- Example#3973 - bbcode_create example
- Example#3974 - bbcode_set_arg_parser usage example
- Example#3975 - bbcode_set_flags usage example
- Example#3976 - Exemplos de padrões válidos
- Example#3977 - Exemplos de padrões inválidos
- Example#3978 - Example comparing preg_filter
with preg_replace
- Example#3979 - Exemplo da preg_grep
- Example#3980 - Exemplo da preg_last_error
- Example#3981 - Getting all phone numbers out of some text.
- Example#3982 - Find matching HTML tags (greedy)
- Example#3983 - Using named subpattern
- Example#3984 - Find the string of text "php"
- Example#3985 - Find the word "web"
- Example#3986 - Getting the domain name out of a URL
- Example#3987 - Using named subpattern
- Example#3988 - Exemplo da preg_quote
- Example#3989 - Deixando em itálico uma palavra de um texto
- Example#3990 - preg_replace_callback e
create_function
- Example#3991 - Exemplo da preg_replace_callback
- Example#3992 - preg_replace_callback usando estrutura recursiva
para manipular BB code aninhado
- Example#3993 - Using backreferences followed by numeric literals
- Example#3994 - Using indexed arrays with preg_replace
- Example#3995 - Replacing several values
- Example#3996 - Strip whitespace
- Example#3997 - Using the count parameter
- Example#3998 - Exemplo da preg_split: Obtendo partes de uma string
- Example#3999 - Dividindo a string em cada caractere que a compõe
- Example#4000 - Dividindo a string pela combinação e seus offsets
- Example#4001 - Exemplos de Expressões Regulares
- Example#4002 - Exemplo da ereg_replace
- Example#4003 - Exemplo da ereg_replace
- Example#4004 - Substitui URLs por links
- Example#4005 - Exemplo da ereg
- Example#4006 - Destacando resultados de uma busca
- Example#4007 - Exemplo da eregi
- Example#4008 - Exemplo da split
- Example#4009 - Exemplo da split
- Example#4010 - Exemplo da spliti
- Example#4011 - Exemplo da sql_regcase
- Example#4012 - Exemplo da addcslashes
- Example#4013 - Exemplo da addslashes
- Example#4014 - chr exemplo
- Example#4015 - Exemplo da chunk_split
- Example#4016 - Exemplo da convert_uudecode
- Example#4017 - Exemplo da convert_uuencode
- Example#4018 - Exemplo count_chars
- Example#4019 - Mostrando um checksum crc32
- Example#4020 - Exemplos da crypt
- Example#4021 - Usando crypt com htpasswd
- Example#4022 - Usando crypt com diferente tipos de encriptação
- Example#4023 - echo exemplos
- Example#4024 - explode exemplos
- Example#4025 - Exemplos de parâmetro limit
- Example#4026 - fprintf: inteiros prenchidos com zero
- Example#4027 - fprintf: formatando valores
- Example#4028 - Exemplo de tabela de tradução
- Example#4029 - hex2bin example
- Example#4030 - Decodificando entidades HTML
- Example#4031 - Exemplo da htmlentities
- Example#4032 - Um exemplo da htmlspecialchars_decode
- Example#4033 - htmlspecialchars exemplo
- Example#4034 - implode exemplo
- Example#4035 - Exemplo de lcfirst
- Example#4036 - localeconv exemplo
- Example#4037 - Exemplo de uso da ltrim
- Example#4038 - Um exemplo da md5
- Example#4039 - Exemplo da money_format
- Example#4040 - usando nl2br
- Example#4041 - Exemplo number_format
- Example#4042 - Exemplo da ord
- Example#4043 - Usando parse_str
- Example#4044 - Exemplos print
- Example#4045 - Exemplo de uso da função rtrim
- Example#4046 - Exemplos setlocale
- Example#4047 - Exemplos para windows desetlocale
- Example#4048 - Exemplo sha1
- Example#4049 - Exemplos de Soundex
- Example#4050 - Troca de argumentos
- Example#4051 - Troca de argumentos
- Example#4052 - Troca de argumento
- Example#4053 - Troca de argumento
- Example#4054 - printf: vários exemplos
- Example#4055 - printf: especificadores de string
- Example#4056 - sprintf: inteiros prenchidos com zero
- Example#4057 - sprintf: formatando dinheiro
- Example#4058 - sprintf: notação científica
- Example#4059 - Exemplo da sscanf
- Example#4060 - sscanf - usando parâmetros opcionais
- Example#4061 - Exemplo str_ireplace
- Example#4062 - Exemplo str_pad
- Example#4063 - Exemplo da str_repeat
- Example#4064 - Exemplos da str_replace
- Example#4065 - Exemplo da str_rot13
- Example#4066 - Exemplo da str_shuffle
- Example#4067 - Exemplo utilizando str_split
- Example#4068 - Um exemplo da str_word_count
- Example#4069 - Exemplo strcasecmp
- Example#4070 - Exemplo strip_tags
- Example#4071 - Exemplos stripos
- Example#4072 - Exemplo stripslashes
- Example#4073 - Usando stripslashes em um array
- Example#4074 - Exemplo da stristr
- Example#4075 - Testing if a string is found or not
- Example#4076 - Using a non "string" needle
- Example#4077 - Exemplo da strlen
- Example#4078 - Exemplo da strpbrk
- Example#4079 - Exemplos strpos
- Example#4080 - Exemplo strrchr
- Example#4081 - Revertendo uma string strrev
- Example#4082 - Um simples exemplo da strripos
- Example#4083 - Exemplo da strspn
- Example#4084 - Exemplo da strstr
- Example#4085 - Exemplo da strtok
- Example#4086 - Comportamento antigo da strtok
- Example#4087 - Novo comportamento da strtok
- Example#4088 - Exemplo da strtolower
- Example#4089 - Exemplo da strtoupper
- Example#4090 - Exemplo da strtr
- Example#4091 - strtr exemplo com dois argumentos
- Example#4092 - Exemplo da substr_compare
- Example#4093 - Exemplo da substr_count
- Example#4094 - substr_replace exemplo
- Example#4095 - Usando um início negativo
- Example#4096 - Usando um length negativo
- Example#4097 - Uso básico da substr
- Example#4098 - Exemplo de uso de trim
- Example#4099 - Usando trim em valores de array
- Example#4100 - Exemplo da ucfirst
- Example#4101 - Exemplo da ucwords
- Example#4102 - vfprintf: preenchendo com zero os inteiros
- Example#4103 - Exemplo de wordwrap
- Example#4104 - Exemplo de wordwrap
- Example#4105 - Exemplo da array_change_key_case
- Example#4106 - Exemplo da array_chunk
- Example#4107 - Um simples exemplo usando array_combine
- Example#4108 - Exemplo da array_count_values
- Example#4109 - Exemplo de array_diff_assoc
- Example#4110 - Exemplo de array_diff_assoc
- Example#4111 - Exemplo de array_diff_key
- Example#4112 - Exemplo de array_diff_uassoc
- Example#4113 - Exemplo da array_diff_ukey
- Example#4114 - Exemplo da array_diff
- Example#4115 - Exemplo da array_fill_keys
- Example#4116 - Exemplo de array_fill
- Example#4117 - Exemplo de array_filter
- Example#4118 - array_filter sem
callback
- Example#4119 - Exemplo de array_flip
- Example#4120 - Exemplo da array_flip: colisão
- Example#4121 - Exemplo da array_intersect_assoc
- Example#4122 - Exemplo da array_intersect_key
- Example#4123 - Exemplo de array_intersect_uassoc
- Example#4124 - Exemplo de array_intersect_ukey
- Example#4125 - Exemplo da array_intersect
- Example#4126 - Exemplo de array_key_exists
- Example#4127 - array_key_exists versus isset
- Example#4128 - Exemplo de array_keys
- Example#4129 - Exemplo de array_map
- Example#4130 - array_map - usando mais de um array
- Example#4131 - Criando um array de arrays
- Example#4132 - array_map - com chaves string
- Example#4133 - Exemplo de array_merge_recursive
- Example#4134 - Exemplo de array_merge
- Example#4135 - Exemplo simples de array_merge
- Example#4136 - Exemplo de array_merge no PHP 5
- Example#4137 - Ordenando múltiplos arrays
- Example#4138 - Ordenando um array multidimensional
- Example#4139 - Ordenando resultados de um banco de dados
- Example#4140 - Ordenar sem diferenciar maiúsculas e minúsculas
- Example#4141 - Exemplo de array_pad
- Example#4142 - Exemplo da array_pop
- Example#4143 - Exemplo da array_product
- Example#4144 - Exemplo de array_push
- Example#4145 - Exemplo de array_rand
- Example#4146 - Exemplo de array_reduce
- Example#4147 - array_replace_recursive example
- Example#4148 - array_replace_recursive and recursive behavior
- Example#4149 - array_replace example
- Example#4150 - Exemplo da array_reverse
- Example#4151 - Exemplo da array_search
- Example#4152 - Exemplo da array_shift
- Example#4153 - Exemplos da array_slice
- Example#4154 - Exemplos da array_splice
- Example#4155 - Exemplos da array_splice
- Example#4156 - Exemplos da array_sum
- Example#4157 - Exemplo de array_udiff_assoc
- Example#4158 - Exemplo de array_udiff_uassoc
- Example#4159 - Exemplo de array_udiff
- Example#4160 - Exemplo de array_uintersect_assoc
- Example#4161 - Exemplo de array_uintersect_uassoc
- Example#4162 - Exemplo da array_uintersect
- Example#4163 - Exemplo de array_unique
- Example#4164 - array_unique e tipos
- Example#4165 - Exemplo de array_unshift
- Example#4166 - Exemplo de array_values
- Example#4167 - Exemplo da array_walk_recursive
- Example#4168 - Exemplo da array_walk
- Example#4169 - Exemplo de array
- Example#4170 - Indexação automática com array
- Example#4171 - Array com índices a partir do 1 com array
- Example#4172 - Acessando uma matriz dentro de conchetes
- Example#4173 - Exemplo da arsort
- Example#4174 - Exemplo da asort
- Example#4175 - Exemplo de compact
- Example#4176 - Exemplo da função count
- Example#4177 - Uso recursivo da função count
- Example#4178 - Exemplo do uso de current e amigos
- Example#4179 - Exemplos da each
- Example#4180 - Percorrendo um array com each
- Example#4181 - Exemplo da end
- Example#4182 - Exemplo da extract
- Example#4183 - Exemplo da in_array
- Example#4184 - in_array com checagem de tipos
- Example#4185 - Exemplo de in_array passando um array para needle
- Example#4186 - Exemplo da key
- Example#4187 - Exemplo de krsort
- Example#4188 - Exemplo da ksort
- Example#4189 - Exemplo da list
- Example#4190 - Exemplo da list
- Example#4191 - Usando list de forma aninhada
- Example#4192 - Usando list com índices de array
- Example#4193 - Exemplo da natcasesort
- Example#4194 - Exemplo da natsort
- Example#4195 - Exemplo de uso da next e funções relacionadas
- Example#4196 - Exemplo de uso de prev e funções relacionadas
- Example#4197 - Exemplos da range
- Example#4198 - Exemplo da reset
- Example#4199 - Exemplo de rsort
- Example#4200 - Exemplo da shuffle
- Example#4201 - Exemplo da sort
- Example#4202 - Exemplo de uksort
- Example#4203 - Exemplo da usort
- Example#4204 - Exemplo de usort usando um array multi-dimensional
- Example#4205 - Exemplo de usort usando uma função membro de um
objeto
- Example#4206 - classes.inc
- Example#4207 - test_script.php
- Example#4208 - Alternativo call_user_method_array
- Example#4209 - call_user_method alternativo
- Example#4210 - class_alias example
- Example#4211 - Exemplo da class_exists
- Example#4212 - Exemplo do parâmetro autoload
- Example#4213 - Using get_called_class
- Example#4214 - Exemplo da get_class_methods
- Example#4215 - Exemplo da get_class_vars
- Example#4216 - Usando a get_class
- Example#4217 - Usando get_class na superclasse
- Example#4218 - Exemplo da get_declared_classes
- Example#4219 - Exemplo de uso de get_declared_interfaces
- Example#4220 - Uso da get_object_vars
- Example#4221 - Usando get_parent_class
- Example#4222 - Exemplo de uso de interface_exists
- Example#4223 - is_a example
- Example#4224 - Using the instanceof operator in PHP 5
- Example#4225 - Exemplo da is_subclass_of
- Example#4226 - Exemplo da method_exists
- Example#4227 - Exemplo da method_exists com método estático
- Example#4228 - Exemplo de uso de property_exists
- Example#4229 - classkit_import example
- Example#4230 - classkit_method_add example
- Example#4231 - classkit_method_copy example
- Example#4232 - classkit_method_redefine example
- Example#4233 - classkit_method_remove example
- Example#4234 - classkit_method_rename example
- Example#4235 - Um exemplo da ctype_alnum (usando o locale padrão)
- Example#4236 - Um exemplo da ctype_alpha (usando o locale padrão)
- Example#4237 - Um exemplo da ctype_cntrl
- Example#4238 - Um exemplo da ctype_digit
- Example#4239 - A ctype_graph example
- Example#4240 - Um exemplo da ctype_lower (usando o locale padrão)
- Example#4241 - Um exemplo da ctype_print
- Example#4242 - Um exemplo da ctype_punct
- Example#4243 - Um exemplo da ctype_space
- Example#4244 - Um exemplo da ctype_upper (usando o locale padrão)
- Example#4245 - Um exemplo da ctype_xdigit
- Example#4246 - Um exemplo da filter_input_array
- Example#4247 - Um exemplo da filter_input
- Example#4248 - Um exemplo da filter_list
- Example#4249 - Um exemplo da filter_var_array
- Example#4250 - Um exemplo da filter_var
- Example#4251 - Exemplo da call_user_func_array
- Example#4252 - Usando call_user_func_array com nome do namespace
- Example#4253 - Exemplo da call_user_func
- Example#4254 - Usando call_user_func com nome do namespace
- Example#4255 - Usando um método da classe
- Example#4256 - Criando uma função anônima com create_function
- Example#4257 - Fazendo um processamento geral com a função
create_function
- Example#4258 - Usando funções anônimas como funções de chamada de retorno
- Example#4259 - forward_static_call_array example
- Example#4260 - forward_static_call example
- Example#4261 - Exemplo da func_get_arg
- Example#4262 - Exemplo da func_get_args
- Example#4263 - Exemplo da func_num_args
- Example#4264 - Exemplo da function_exists
- Example#4265 - Exemplo da get_defined_functions
- Example#4266 - Exemplo de uso da register_tick_function
- Example#4267 - Class association
- Example#4268 - Object association
- Example#4269 - storage_classes.inc
- Example#4270 - test_aggregation.php
- Example#4271 - Using aggregate_info
- Example#4272 - Quickhash Example
- Example#4273 - Quickhash ArrayAccess Example
- Example#4274 - Quickhash Iterator Example
- Example#4275 - Quickhash String Values Example
- Example#4276 - QuickHashIntSet::add example
- Example#4277 - QuickHashIntSet::__construct example
- Example#4278 - QuickHashIntSet::delete example
- Example#4279 - QuickHashIntSet::exists example
- Example#4280 - QuickHashIntSet::getSize example
- Example#4281 - QuickHashIntSet::loadFromFile example
- Example#4282 - QuickHashIntSet::loadFromString example
- Example#4283 - QuickHashIntSet::saveToFile example
- Example#4284 - QuickHashIntSet::saveToString example
- Example#4285 - QuickHashIntHash::add example
- Example#4286 - QuickHashIntHash::__construct example
- Example#4287 - QuickHashIntHash::delete example
- Example#4288 - QuickHashIntHash::exists example
- Example#4289 - QuickHashIntHash::get example
- Example#4290 - QuickHashIntHash::getSize example
- Example#4291 - QuickHash IntHash file format
- Example#4292 - QuickHash IntHash file format
- Example#4293 - QuickHashIntHash::loadFromFile example
- Example#4294 - QuickHashIntHash::loadFromString example
- Example#4295 - QuickHashIntHash::saveToFile example
- Example#4296 - QuickHashIntHash::saveToString example
- Example#4297 - QuickHashIntHash::set example
- Example#4298 - QuickHashIntHash::update example
- Example#4299 - QuickHashStringIntHash::add example
- Example#4300 - QuickHashStringIntHash::__construct example
- Example#4301 - QuickHashStringIntHash::delete example
- Example#4302 - QuickHashStringIntHash::get example
- Example#4303 - QuickHashStringIntHash::getSize example
- Example#4304 - QuickHash StringIntHash file format
- Example#4305 - QuickHash IntHash file format
- Example#4306 - QuickHashStringIntHash::loadFromFile example
- Example#4307 - QuickHashStringIntHash::loadFromString example
- Example#4308 - QuickHashStringIntHash::saveToFile example
- Example#4309 - QuickHashStringIntHash::saveToString example
- Example#4310 - QuickHashStringIntHash::set example
- Example#4311 - QuickHashStringIntHash::update example
- Example#4312 - QuickHashIntStringHash::add example
- Example#4313 - QuickHashIntStringHash::__construct example
- Example#4314 - QuickHashIntStringHash::delete example
- Example#4315 - QuickHashIntStringHash::get example
- Example#4316 - QuickHashIntStringHash::getSize example
- Example#4317 - QuickHash IntString file format
- Example#4318 - QuickHash IntString file format
- Example#4319 - QuickHashIntStringHash::loadFromFile example
- Example#4320 - QuickHashIntStringHash::loadFromString example
- Example#4321 - QuickHashIntStringHash::saveToFile example
- Example#4322 - QuickHashIntStringHash::saveToString example
- Example#4323 - QuickHashIntStringHash::set example
- Example#4324 - QuickHashIntStringHash::update example
- Example#4325 - Reflection Example from Shell (a Terminal)
- Example#4326 - Extending the built-in classes
- Example#4327 - Basic usage ReflectionClass
- Example#4328 - Basic usage of ReflectionClass::export
- Example#4329 - Basic usage of ReflectionClass::getConstructor
- Example#4330 - ReflectionClass::getDefaultProperties example
- Example#4331 - ReflectionClass::getDocComment example
- Example#4332 - ReflectionClass::getEndLine example
- Example#4333 - Basic usage of ReflectionClass::getExtension
- Example#4334 - Basic usage of ReflectionClass::getExtensionName
- Example#4335 - ReflectionClass::getInterfaceNames example
- Example#4336 - ReflectionClass::getInterfaces example
- Example#4337 - Basic usage of ReflectionClass::getMethod
- Example#4338 - Basic usage of ReflectionClass::getMethods
- Example#4339 - Filtering results from ReflectionClass::getMethods
- Example#4340 - ReflectionClass::getName example
- Example#4341 - ReflectionClass::getNamespaceName example
- Example#4342 - ReflectionClass::getProperties filtering example
- Example#4343 - Basic usage of ReflectionClass::getProperty
- Example#4344 - ReflectionClass::getShortName example
- Example#4345 - Basic usage of ReflectionClass::getStaticPropertyValue
- Example#4346 - ReflectionClass::hasConstant example
- Example#4347 - ReflectionClass::hasMethod example
- Example#4348 - ReflectionClass::hasProperty example
- Example#4349 - ReflectionClass::inNamespace example
- Example#4350 - ReflectionClass::isAbstract example
- Example#4351 - Basic usage of ReflectionClass::isCloneable
- Example#4352 - ReflectionClass::isAbstract example
- Example#4353 - ReflectionClass::isInstance related examples
- Example#4354 - ReflectionClass::isInstantiable example
- Example#4355 - Basic usage of ReflectionClass::isInterface
- Example#4356 - Basic usage of ReflectionClass::isInternal
- Example#4357 - ReflectionClass::isIterateable example
- Example#4358 - Basic usage of ReflectionClass::newInstanceArgs
- Example#4359 - ReflectionClass::__toString example
- Example#4360 - ReflectionExtension example
- Example#4361 - ReflectionExtension::getClasses example
- Example#4362 - ReflectionExtension::getClassNames example
- Example#4363 - ReflectionExtension::getConstants example
- Example#4364 - ReflectionExtension::getDependencies example
- Example#4365 - ReflectionExtension::getFunctions example
- Example#4366 - ReflectionExtension::getINIEntries example
- Example#4367 - ReflectionExtension::getName example
- Example#4368 - ReflectionExtension::getVersion example
- Example#4369 - ReflectionExtension::info example
- Example#4370 - ReflectionFunction::__construct example
- Example#4371 - ReflectionFunction::invoke example
- Example#4372 - ReflectionFunction::invokeArgs example
- Example#4373 - ReflectionFunction::invokeArgs with references example
- Example#4374 - ReflectionFunction::__toString example
- Example#4375 - ReflectionFunctionAbstract::isDeprecated example
- Example#4376 - ReflectionMethod::__construct example
- Example#4377 - ReflectionMethod::getDeclaringClass example
- Example#4378 - ReflectionMethod::getModifiers example
- Example#4379 - ReflectionMethod::getPrototype example
- Example#4380 - ReflectionMethod::invoke example
- Example#4381 - ReflectionMethod::invokeArgs example
- Example#4382 - ReflectionMethod::__toString example
- Example#4383 - Using the ReflectionParameter class
- Example#4384 - Getting
- Example#4385 - ReflectionProperty::__construct example
- Example#4386 - Getting value from private and protected properties using ReflectionProperty class
- Example#4387 - ReflectionProperty::getValue example
- Example#4388 - ReflectionProperty::setValue example
- Example#4389 - Exemplo da debug_zval_dump
- Example#4390 -
- Example#4391 -
- Example#4392 - Uma simples comparação entre as funções
empty / isset.
- Example#4393 - Exemplo da floatval
- Example#4394 - Exemplo da get_defined_vars
- Example#4395 - Exemplo da get_resource_type
- Example#4396 - Exemplo da import_request_variables
- Example#4397 - Exemplos da intval
- Example#4398 - Verificando se a variável é um array
- Example#4399 - Exemplo is_bool
- Example#4400 - Exemplo da is_callable
- Example#4401 - Exemplo da is_float
- Example#4402 - Exemplo da is_int
- Example#4403 - Exemplo da is_resource
- Example#4404 - Exemplo da is_scalar
- Example#4405 - Exemplo da is_string
- Example#4406 - Exemplos da isset
- Example#4407 - Exemplo de print_r
- Example#4408 - Exemplo do parâmetro return
- Example#4409 - serialize example
- Example#4410 - Exemplo da função settype
- Example#4411 - Exemplo de strval usando o método mágico
__toString do PHP 5
- Example#4412 - unserialize example
- Example#4413 - unserialize_callback_func example
- Example#4414 - Exemplo da unset
- Example#4415 - Exemplo da var_dump
- Example#4416 -
- Example#4417 - OAuth::fetch example
- Example#4418 - OAuth::getAccessToken example
- Example#4419 - OAuth::getRequestToken example
- Example#4420 - OAuth::setRequestEngine example
- Example#4421 - An OAuth::setRsaCertificate example
- Example#4422 - OAuth::setToken example
- Example#4423 - OAuthProvider::__construct example
- Example#4424 - Example OAuthProvider::consumerHandler callback
- Example#4425 - OAuthProvider::generateToken example
- Example#4426 - OAuthProvider::is2LeggedEndpoint example
- Example#4427 - Example OAuthProvider::timestampNonceHandler callback
- Example#4428 - Example OAuthProvider::tokenHandler callback
- Example#4429 - A sample SCA component
- Example#4430 - The structure of an SCA for PHP component
- Example#4431 - Obtaining a proxy for a local PHP class
- Example#4432 - Obtaining a proxy for a web service
- Example#4433 - Calling services
- Example#4434 - Obtaining a proxy using getService
- Example#4435 - Making calls on the proxy
- Example#4436 - StockQuote Service
- Example#4437 - Generated WSDL
- Example#4438 - Generated WSDL
- Example#4439 - location attribute
- Example#4440 - method with two arguments
- Example#4441 - types section illustrating named parameters
- Example#4442 - A Component that uses Data Structures
- Example#4443 - An SCA::getService example
- Example#4444 - is_soap_fault example
- Example#4445 - SOAP's standard method for error reporting is exceptions
- Example#4446 - SoapClient::__doRequest example
- Example#4447 - SoapClient::__getFunctions example
- Example#4448 - SoapClient::__getLastRequest() example
- Example#4449 - SoapClient::__getLastRequest() example
- Example#4450 - SoapClient::__getLastResponse() example
- Example#4451 - SoapClient::__getLastResponse() example
- Example#4452 - SoapClient::__getTypes example
- Example#4453 - SoapClient::__setLocation example
- Example#4454 - SoapClient::__setSoapHeaders example
- Example#4455 - Set Multiple Headers
- Example#4456 - SoapClient::__soapCall example
- Example#4457 - SoapClient::SoapClient example
- Example#4458 - SoapServer::addFunction example
- Example#4459 - SoapServer::getFunctions example
- Example#4460 - SoapServer::handle example
- Example#4461 - SoapServer::setPersistence example
- Example#4462 - SoapServer::SoapServer example
- Example#4463 - Some examples
- Example#4464 - Some examples
- Example#4465 - SoapHeader::SoapHeader example
- Example#4466 - SoapParam::SoapParam example
- Example#4467 - SoapVar::SoapVar example
- Example#4468 - Exemplo de uso das funções de cliente XMLRPC
- Example#4469 - For Each in ASP
- Example#4470 - while() ... Next() in PHP 4
- Example#4471 - foreach in PHP 5
- Example#4472 - COM example (1)
- Example#4473 - COM example (2)
- Example#4474 - DOTNET example
- Example#4475 - Variant example, PHP 4.x style
- Example#4476 - Variant example, PHP 5 style
- Example#4477 - COM event sink example
- Example#4478 - OO syntax
- Example#4479 - Don't use com_invoke(), use OO syntax instead
- Example#4480 - OO syntax
- Example#4481 - OO syntax
- Example#4482 - Exemplo printer_abort
- Example#4483 - Exemplo printer_close
- Example#4484 - Exemplo printer_create_dc
- Example#4485 - Exemplo printer_draw_bmp
- Example#4486 - printer_draw_chord example
- Example#4487 - printer_draw_elipse example
- Example#4488 - Exemplo printer_draw_line
- Example#4489 - printer_draw_pie example
- Example#4490 - printer_draw_rectangle example
- Example#4491 - printer_draw_roundrect example
- Example#4492 - Exemplo printer_draw_text
- Example#4493 - Exemplo printer_get_option
- Example#4494 - Exemplo printer_list
- Example#4495 - Exemplo printer_logical_fontheight
- Example#4496 - Exemplo printer_open
- Example#4497 - Exemplo printer_select_brush
- Example#4498 - Exemplo printer_select_font
- Example#4499 - Exemplo printer_select_pen
- Example#4500 - Exemplo printer_set_option
- Example#4501 - Exemplo printer_start_doc
- Example#4502 - Exemplo printer_write
- Example#4503 - Pega o uptime e mostra em uma caixa de mensagem
- Example#4504 - Estatísticas sobre o processo atual do PHP
- Example#4505 - Estatísticas globais sobre utilização de memória
- Example#4506 - Registering a PHP script to run as a service
- Example#4507 - Unregistering a service
- Example#4508 - Running as a service
- Example#4509 - A win32_create_service example
- Example#4510 - A win32_delete_service example
- Example#4511 - A win32_start_service_ctrl_dispatcher example
- Example#4512 - Creating a new DOMAttr object
- Example#4513 - DOMAttr::isId() Example
- Example#4514 - Creating a new DOMCdataSection object
- Example#4515 - Creating a new DOMComment
- Example#4516 - Creating a new DOMDocument
- Example#4517 - Creating a new element and inserting it as root
- Example#4518 - Creating a new element and inserting it as root
- Example#4519 - A namespace prefix example
- Example#4520 - DOMDocument::getElementById() Example
- Example#4521 - Basic Usage Example
- Example#4522 - Get all the XInclude elements
- Example#4523 - DOMDocument::importNode example
- Example#4524 - Creating a Document
- Example#4525 - Creating a Document
- Example#4526 - Creating a Document
- Example#4527 - Creating a Document
- Example#4528 - Static invocation of loadXML
- Example#4529 - Adding a new method to DOMElement to ease our code
- Example#4530 - Retrieving elements as custom class
- Example#4531 - Retrieving owner document
- Example#4532 - Saving a DOM tree into a file
- Example#4533 - Saving a HTML tree into a string
- Example#4534 - Saving a HTML tree into a file
- Example#4535 - Saving a DOM tree into a string
- Example#4536 - Example of DTD validation
- Example#4537 - DOMDocument::xinclude() example
- Example#4538 - Appending XML data to your document
- Example#4539 - Creating a new DOMElement
- Example#4540 - Setting an attribute
- Example#4541 - Creating a new DOMEntityReference
- Example#4542 - Creating a document with an attached DTD
- Example#4543 - Testing your DOM Implementation
- Example#4544 - Adding a child
- Example#4545 - DOMNode::getLineNo example
- Example#4546 - DOMNode::getNodePath example
- Example#4547 - Removing a child
- Example#4548 - Preserving the parent node's namespace URI
- Example#4549 - Traversing all the entries of the table
- Example#4550 - Creating a new DOMProcessingInstruction object
- Example#4551 - Creating a new DOMText
- Example#4552 - Getting the count of all the english books
- Example#4553 - Getting all the english books
- Example#4554 - book.xml
- Example#4555 - DOMXPath::registerPHPFunctions with php:functionString
- Example#4556 - DOMXPath::registerPHPFunctions with php:function
- Example#4557 - Import SimpleXML into DOM with dom_import_simplexml
- Example#4558 - Um exemplo da libxml_get_errors
- Example#4559 - libxml_set_external_entity_loader example
- Example#4560 - Um exemplo da libxml_set_streams_context
- Example#4561 - Um exemplo da libxml_use_internal_errors
- Example#4562 - Access via property name
- Example#4563 - Access via property name as array index
- Example#4564 - Data Object iteration
- Example#4565 - Access many-valued property by name
- Example#4566 - Many-valued element access
- Example#4567 - Many-valued property iteration
- Example#4568 - Chained property access
- Example#4569 - XPath navigation
- Example#4570 - XPath querying
- Example#4571 - Creating child data objects
- Example#4572 - Unset a primitive property
- Example#4573 - Unset a data object
- Example#4574 - Unset a referenced data object
- Example#4575 - Access via property index
- Example#4576 - Getting the SDO_Sequence interface
- Example#4577 - Get/set sequence values
- Example#4578 - Sequence iteration
- Example#4579 - Sequence versus Data Object
- Example#4580 - Adding to a sequence
- Example#4581 - Removing from a sequence
- Example#4582 - Reflecting on a Data Object
- Example#4583 - Accessing the type information
- Example#4584 - A
SDO_DAS_DataFactory::addPropertyToType
example
- Example#4585 - A
SDO_DAS_DataFactory::addType
example
- Example#4586 - Creating a data object
- Example#4587 - Retrieving a data object
- Example#4588 - Updating a data object
- Example#4589 - Deleting a data object
- Example#4590 - One company, one department - Create
- Example#4591 - One company, one department - Retrieve and Update
- Example#4592 - One company, two departments - Retrieve and Delete
- Example#4593 - One company, one department, one employee - Create
- Example#4594 - One company, one department, one employee - Retrieve and update
- Example#4595 - One company, two departments, two employees - Retrieve and delete
- Example#4596 - Retrieving a data object using
executePreparedQuery
- Example#4597 - Loading, altering, and saving an XML document
- Example#4598 - Creating a new XML document
- Example#4599 - Setting XML document properties
- Example#4600 - Using an open type
- Example#4601 - Finding out what you can from the document
- Example#4602 - Printing the SDO model
- Example#4603 - Include file example.php with XML string
- Example#4604 - Getting <plot>
- Example#4605 - Getting <line>
- Example#4606 - Accessing non-unique elements in SimpleXML
- Example#4607 - Using attributes
- Example#4608 - Comparing Elements and Attributes with Text
- Example#4609 - Comparing Two Elements
- Example#4610 - Using XPath
- Example#4611 - Setting values
- Example#4612 - Adding elements and attributes
- Example#4613 - DOM Interoperability
- Example#4614 - Loading broken XML string
- Example#4615 - Add attributes and children to a SimpleXML element
- Example#4616 - Add attributes and children to a SimpleXML element
- Example#4617 - Get XML
- Example#4618 - Using asXML() on SimpleXMLElement::xpath results
- Example#4619 - Interpret an XML string
- Example#4620 - Traversing a children() pseudo-array
- Example#4621 - Using namespaces
- Example#4622 - Create a SimpleXMLElement object
- Example#4623 - Create a SimpleXMLElement object from a URL
- Example#4624 - Counting the number of children
- Example#4625 - Get document namespaces
- Example#4626 - Working with multiple namespaces
- Example#4627 - Get XML element names
- Example#4628 - Get document namespaces in use
- Example#4629 - Setting a namespace prefix to use in an XPath query
- Example#4630 - Xpath
- Example#4631 - Importing DOM
- Example#4632 - Interperta um documento XML
- Example#4633 - Interpreta uma string XML
- Example#4634 - Serializando um único valor com WDDX
- Example#4635 - Usando pacotes incrementais com WDDX
- Example#4636 - Exemplo de uso de wddx_serialize_vars
- Example#4637 - Mostra estrutura do elemento XML
- Example#4638 - Arrumar XML to HTML
- Example#4639 - Exemplo da Entidade Externa
- Example#4640 - xmltest.xml
- Example#4641 - xmltest2.xml
- Example#4642 - Exemplo da xml_parse_into_struct
- Example#4643 - moldb.xml - pequeno banco de dados de informações
moleculares
- Example#4644 - parsemoldb.php - analisa moldb.xml e cria o array dos objetos moleculares
- Example#4645 - xml_set_object example
- Example#4646 - Validating XML
- Example#4647 - collection.xml
- Example#4648 - collection.xsl
- Example#4649 - Criando um XSLTProcessor
- Example#4650 - Testando o suporte a EXSLT
- Example#4651 - Simples chamada de função do PHP em um stylesheet
- Example#4652 - Modificando antes da transformação
- Example#4653 - Example profiling output
- Example#4654 - Transformando para DOMDocument
- Example#4655 - Transformando para um arquivo HTML
- Example#4656 - Transformando para uma string
- Example#4657 - xslt_backend_name example
- Example#4658 - xslt_backend_version example
- Example#4659 - xslt_create example
- Example#4660 - Handling errors using the xslt_error and
xslt_errno functions.
- Example#4661 - Using the xslt_process to transform an XML
file and a XSL file to a new XML file
- Example#4662 - Using the xslt_process to transform an XML file
and a XSL file to a variable containing the resulting XML data
- Example#4663 - Using the xslt_process to transform a variable containing XML data
and a variable containing XSL data into a variable containing the resulting XML data
- Example#4664 - Passing PHP variables to XSL files
- Example#4665 - xslt_set_error_handler Example
- Example#4666 - Using the XSLT Logging features
- Example#4667 - Using your own error handler as a method
- Example#4668 - xslt_set_sax_handlers Example
- Example#4669 - Object oriented handler
- Example#4670 - xslt_set_scheme_handlers example
- Example#4671 - xslt_setopt Example
- Example#4672 - "counter"'s basic interface
- Example#4673 - "counter"'s extended interface
- Example#4674 - "counter"'s objective interface
- Example#4675 - An example config.m4 file
- Example#4676 - Sample configure output
- Example#4677 - counter's config.m4 file
- Example#4678 - An example config.w32 file
- Example#4679 - counter's config.w32 file
- Example#4680 - Files in the counter extension, in no particular order
- Example#4681 - zend_module declaration in the counter extension
- Example#4682 - zend_module definition in PHP 5.3
- Example#4683 - Counter extension module definition
- Example#4684 - The wrong way to store the basic counter interface's value
- Example#4685 - The counter module's globals
- Example#4686 - The counter module's global structure declaration
- Example#4687 - Accessor macros for per-module globals
- Example#4688 - The right way to store the basic counter interface's value
- Example#4689 - counter's PHP_MINFO function
- Example#4690 - PHP's leak warnings
- Example#4691 - Minimal PHP extension with one function
- Example#4692 - A simple function
- Example#4693 - Example macros for invoking pdo_SKEL_error
- Example#4694 - Using pdo_parse_params
- Example#4695 - Implementing preparer for drivers that don't support native prepared statements
- Example#4696 - simple stream example that displays the PHP home page
- Example#4697 - How to accept a stream as a parameter
- Example#4698 - How to return a stream from a function
- Example#4699 - The default config.m4.
- Example#4700 - A simple extension.
- Example#4701 - A test file for first_module.so.
- Example#4702 - Internal declaration of zend_function_entry.
- Example#4703 - Internal declaration of zend_module_entry.
- Example#4704 - PHP's implementation of variable arguments in fsockopen().
- Example#4705 - PHP/Zend zval type definition.
- Example#4706 - Testing for referenced parameter passing.
- Example#4707 - Creating variables with different scopes.
- Example#4708 - Creation of a long.
- Example#4709 - Adding an element to an associative array.
- Example#4710 - Adding an element to an indexed array.
- Example#4711 - Source code and screenshot for output in phpinfo.
- Example#4712 - Printing execution information.
- Example#4713 - Calling user functions.
- Example#4714 - Um elemento oculto formulário HTML
- Example#4715 - Dados a serem editados pelo usuário
- Example#4716 - Em uma URL
- Example#4717 - Gerando Javascript com PHP
- Example#4718 - Emulando Register Globals
- Example#4719 - Example PHP/FI Code
- Example#4720 - In PHP Core
- Example#4721 - Object Oriented Code in PHP Core
- Example#4722 - In the bzip2 Extension
- Example#4723 - In the datetime Extension
- Example#4724 - In the dBase Extension
- Example#4725 - In the mcrypt Extension
- Example#4726 - In the oci8 Extension
- Example#4727 - In the SPL Extension
- Example#4728 - In the Semaphore (sysvmsg) extension
- Example#4729 - A 5.2.1+ Zip Example
- Example#4730 - strrpos and strripos now
use the entire string as a needle
- Example#4731 - An object with no properties is no longer considered "empty"
- Example#4732 - In some cases classes must be declared before used
- Example#4733 - Migrating Apache configuration files for PHP 5
- Example#4734 - Migrating Apache configuration files for PHP 5, CGI mode
- Example#4735 - Example of object comparison in PHP 4
- Example#4736 - Compound object comparisons in PHP 4
- Example#4737 - Activate full on-screen error reporting for dev. domain
- Example#4738 - Add security script for protected areas
- Example#4739 - Unix include_path
- Example#4740 - Windows include_path
- Example#4741 - string.rot13
- Example#4742 - string.toupper
- Example#4743 - string.tolower
- Example#4744 - string.strip_tags
- Example#4745 - convert.base64-encode &
convert.base64-decode
- Example#4746 - convert.quoted-printable-encode &
convert.quoted-printable-decode
- Example#4747 - zlib.deflate e
zlib.inflate
- Example#4748 - zlib.deflate simples
- Example#4749 - bzip2.compress e
bzip2.decompress
- Example#4750 - Criptografando saída de arquivo usando 3DES
- Example#4751 - Lendo um arquivo criptografado