Voting

: zero plus seven?
(Example: nine)

The Note You're Voting On

Julien MOREAU aka PixEye
3 years ago
In order to change zend.assertions or assert.exception values, try with the ini_set() function but be aware that it may fail.

Example:
<?php
$ret
= @ini_set('zend.assertions', '1');
if (
$ret === false) echo 'ini_set() failed before line ', __LINE__, PHP_EOL;

<< Back to user notes page

To Top