Malhar Lathkar has Published 189 Articles

PHP AssertionError

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:32:36

161 Views

IntroductionAssertionError class is a subclass of Error class. This type of error is thrown when assert() returns FALSEassert() checks if given assertion is true or false, and throws AssertionError if it is false. The assert() function is defined as follows −Syntaxfor PHP 5 and PHP 7 assert ( mixed $assertion [, ... Read More

PHP CompileError

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:30:17

142 Views

IntroductionIn PHP 7.3 onwards, CompileError exception has been added. This class inherits Error class. Some error conditions that previously resulted in fatal error, now throw a CompileError. This affects compilation errors that are likely to be thrown by token_get_all() function.The token_get_all() function uses Zend lexical scanner to parse a given string ... Read More

PHP DivisionByZeroError

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:27:48

2K+ Views

IntroductionDivisionByZeroError class is a subclass of ArithmeticError class. This type of error occurs when division operation involves value of denominator as zero. This can also occur when a modulo operator (%) has 0 as second operator, and intdiv() function having second argument as 0.DivisionByZeroError ExampleIn first example, we try to perform modulo ... Read More

PHP ErrorException

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:25:22

278 Views

IntroductionPHP's Exception class implements the Throwable interface. ErrorException class extends the Exception class. ErrorException is meant to be explicitly thrown when you want to catch and handle errors that would otherwise be ignored, such as Notices or Warnings.PHP core consists of following predefined error constantsValueConstantDescription1E_ERRORFatal run-time errors.2E_WARNINGRun-time warnings (non-fatal errors).4E_PARSECompile-time ... Read More

PHP ParseError

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:21:55

208 Views

IntroductionParseError class extends CompileError class. (Earlier it used to be subclass of Error class). This type of error is thrown while a PHP code inside a string that is given to eval() function as argument.The eval() function evaluates given string as PHP code.Syntaxeval ( string $code ) : mixedParametersSr.NoParameter & Description1codevalid ... Read More

PHP TypeError

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:19:39

171 Views

IntroductionTypeError class extends Error class. This error is raised when actual and formal argument types don't match, return type doesn't match the decalred returned type or invalid arguments passed to any built-in functionNote that strict_types should be set to true with declare() function at the top of script −In this example, types ... Read More

PHP Types of Errors

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:16:54

298 Views

IntroductionPHP's internal Error types are represented by classes that are inherited from Error class. The Error class implements Throwable interface. Properties and methods of Error class are as follows −propertiesmessage − The error messagecode − The error codefile − The filename where the error happenedline − The line where the ... Read More

PHP Zip context options

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:15:01

185 Views

IntroductionPHP's ZIP extension registers zip:// wrapper. PHP 7.2.0 onwards supports passwords for encrypted archives. There is only one Zip context option called passwordExampleFirst create ZIP archive as follows:

PHP SSL context options

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:13:40

955 Views

IntroductionList of Context options for ssl:// and tls:// transports.peer_namePeer name to be used. If this value is not set, then the name is guessed based on the hostname used when opening the stream.verify_peerRequire verification of SSL certificate used. Defaults to TRUE.verify_peer_nameRequire verification of peer name. Defaults to TRUE.allow_self_signedAllow self-signed certificates. Requires verify_peer. ... Read More

PHP Socket context options

Malhar Lathkar

Malhar Lathkar

Updated on 21-Sep-2020 11:09:42

240 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 ... Read More

Advertisements