1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 07:02:33 +02:00
Files
archived-php-src/Zend/tests/not_001.phpt
Antony Dovgal c3b9d939e0 add new tests
2007-04-28 11:59:08 +00:00

23 lines
244 B
PHP

--TEST--
bitwise NOT, doubles and strings
--FILE--
<?php
$d = 23.67;
$s = "48484.22";
$s1 = "test";
$s2 = "some";
$s = ~$d;
var_dump($s);
$s1 = ~$s2;
var_dump(bin2hex($s1));
echo "Done\n";
?>
--EXPECTF--
int(-24)
string(8) "8c90929a"
Done