Voting

: min(six, two)?
(Example: nine)

The Note You're Voting On

kc8yds at gmail dot com
16 years ago
this is to show all errors for code that may be run on different versions

for php 5 it shows E_ALL^E_STRICT and for other versions just E_ALL

if anyone sees any problems with it please correct this post

<?php
ini_set
('error_reporting', version_compare(PHP_VERSION,5,'>=') && version_compare(PHP_VERSION,6,'<') ?E_ALL^E_STRICT:E_ALL);
?>

<< Back to user notes page

To Top