summaryrefslogtreecommitdiff
path: root/Zend/tests/cast_to_double.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/cast_to_double.phpt')
-rw-r--r--Zend/tests/cast_to_double.phpt40
1 files changed, 20 insertions, 20 deletions
diff --git a/Zend/tests/cast_to_double.phpt b/Zend/tests/cast_to_double.phpt
index d2ee8ca1e9..2972fbbe80 100644
--- a/Zend/tests/cast_to_double.phpt
+++ b/Zend/tests/cast_to_double.phpt
@@ -8,32 +8,32 @@ precision=14
$r = fopen(__FILE__, "r");
class test {
- function __toString() {
- return "10";
- }
+ function __toString() {
+ return "10";
+ }
}
$o = new test;
$vars = array(
- "string",
- "8754456",
- "",
- "\0",
- 9876545,
- 0.10,
- array(),
- array(1,2,3),
- false,
- true,
- NULL,
- $r,
- $o
+ "string",
+ "8754456",
+ "",
+ "\0",
+ 9876545,
+ 0.10,
+ array(),
+ array(1,2,3),
+ false,
+ true,
+ NULL,
+ $r,
+ $o
);
foreach ($vars as $var) {
- $tmp = (double)$var;
- var_dump($tmp);
+ $tmp = (double)$var;
+ var_dump($tmp);
}
echo "Done\n";
@@ -50,8 +50,8 @@ float(1)
float(0)
float(1)
float(0)
-float(%d)
+float(%f)
-Notice: Object of class test could not be converted to float in %s on line %d
+Warning: Object of class test could not be converted to float in %s on line %d
float(1)
Done