
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 33676 Articles for Programming

364 Views
IntroductionAccess to filesystem and various other stream wrappers can be customized by various context options and parameters configures by stream_context_create() and stream_context_set_option() functions.Following list shows various socket context options are available for all wrappers that work over sockets, like tcp, http and ftp.bindtospecifies the IP address (either IPv4 or IPv6) and/or the port number used to access the network. (ip:port for IPv4 [ip]:port for IPv6).backloglimits number of outstanding connections in socket's listen queue.ipv6_v6onlyOverrides the OS default regarding mapping IPv4 into IPv6.so_reuseportAllows multiple bindings to a same ip:port pair.so_broadcastEnables sending and receiving data to/from broadcast addresses.tcp_nodelayIf TRUE, sets SOL_TCP, NO_DELAY=1 appropriately, disabling ... Read More

201 Views
IntroductionPhar stands for PHP Archive. All the resources of a certain PHP application or library are packages in a single .phar file for the purpose of istribution. A phar file can be used as IO stream with phar:// wrapper. Context options for phar:// wrapper are listed as follows −compressPHP has following predefined constants for defining compression formatsConstantValueDescriptionPhar::NONE0x00000000no compressionPhar::COMPRESSED0x0000F000bitmask with file flags to determine if any compression is presenPhar::GZ0x00001000zlib (gzip) compressionPhar::BZ20x00002000bzip2 compressionmetadataAny PHP variable containing information to store that describes the phar archive is used as argument for Phar::setMetadata() methodExampleThis example Phar context option set for creating Phar fileRead More

523 Views
IntroductionContext parameters allow customization of access to filesystem and other stream wrappers. To configure a stream, PHP has stream_context_set_params() function.Syntaxstream_context_set_params ( resource $stream_or_context , array $params ) : bool$stream_or_context can be any of PHP's supported streams/wrappers/contexts$params is an array with following properties. should be an associative array of the structure − $params['paramname'] = "paramvalue";context parametersnotification − A user-defined callback to be called whenever a stream triggers a notification. Only for http:// and ftp:// stream wrappers.The notification callback function has following syntaxsyntaxstream_notification_callback ( int $notification_code , int $severity , string $message , int $message_code , int $bytes_transferred , int $bytes_max ) ... Read More

183 Views
IntroductionPHP can interact with MongoDB database through database extensions. For older versions of PHP, mongo driver can be installed from PECL. This has now been replaced by mongodb driver. Both drivers can be installed using precompiled binaries for Linux/Windows/MacOS operating systems. Alternately, manual installation can be done from source tarball available on github. In either case, mongo or mongodb extension should be enabled in php.ini settings.The PHP MongoDB extension provides Stream Context Support using the mongodb context. Relevent context options are as followsOptionslog_cmd_insert ( array $server , array $document , array $writeOptions , array $protocolOptions )This is a callable function, used ... Read More

513 Views
IntroductionGiven below is the list of context options for http:// and https:// transportsmethodHTTP method supported by the remote server. Defaults to GET.headerAdditional headers to be sent during request.user_agentValue to send with User-Agent: header. By default the user_agent php.ini setting is used.contentAdditional data to be sent after the headers. Typically used with POST or PUT requests.proxyURI specifying address of proxy server.request_fulluri booleanWhen set to TRUE, the entire URI will be used when constructing the request. Defaults to FALSE.follow_locationFollow Location header redirects. Set to 0 to disable.Defaults to 1.max_redirectsThe max number of redirects to follow.protocol_versionHTTP protocol version. Defaults to 1.0.timeoutRead timeout in seconds, ... Read More

458 Views
IntroductionContext options for http:// and https:// transports are listed below −overwriteAllow overwriting of already existing files on remote server while uploading only.resume_posFile offset at which to begin transfer. Applies for downloading only.Defaults to 0 (Beginning of File).proxyProxy FTP request via http proxy server. Applies to file read operations only. Ex −tcp://squid.example.com:8000.This example shows how to allow fopen() to overwrite a file on an FTP site.Example

2K+ Views
IntroductionIn PHP, it is possible to set variable name dynamically. Such a variable uses value of an existing variable as name. A variable variable is defined with two $ signs as prefixExample Live DemoOutputThis script produces following outputxyz abcd abcd abcdNote that value of $$var1 is same as $xyz, xyz being value of $var1.Numeric value of normal variable cannot be used as variable variableExample Live DemoOutputWhen this script is executed, following result is displayedPHP Parse error: syntax error, unexpected '100' (T_LNUMBER), expecting variable (T_VARIABLE) or '{' or '$' line 6It is also possible to define a variable variable in terms of an ... Read More

344 Views
IntroductionPHP's variable namespace is populated by external sources such as HTML form elements, cookies and screen coordinates of image submit buttonHTML form elementsWhen a web page submits data in its HTML form to a PHP script, it is automatically made available to the script in the form of $_POST, $_GET and $_REQUEST variables. Following is a typical HTML form Data entered by user is populated as $_POST associative array in PHP scriptPlace HTML page in document root along with testscript.php. Open it in browser and enter dataName : xyz Age : 20Using method='GET' in ... Read More

387 Views
IntroductionName of a variable in PHP starts with a $ sign. It is followed by either a letter (A-Z either upper or lowe case) or underscore, and then there may be any number of letters, digits or underscores. Name of variable in PHP is case sensitive.Syntax//valid variables $var=10; $VAR="Hello"; //different from $var $marks_1=67; $_val=0; //invalid variables var=10; //not starting with $ $4sqr=16; //not starting with letter/_ $my name="Hello"; //white space not allowed in variable name $my$name="Hello"; //$ character can not be used after first positionA variable is also assigned a value by reference to another variable. To assign value by ... Read More

2K+ Views
Definition and UsageIn PHP, a string data type is a non-numeric sequence of charaters.Any character in the ASCII set can be a part of a string. PHP doesn't support UNICODE.In PHP, literal representation of string can be done with single quotes, double quotes, with heredoc syntax and nowdoc syntax.Syntax//Literal assignment of string value to variable $var='Hello World'; //Single quotes $var3="Hello World"; //Double quotesTo embed single quote character inside single quoted string prefix it with '\'. Similarly to embed backslash in single quoted string prefix it with additional backslash. Other escape sequence characters such as etc. do not carry any ... Read More