Re: Fwd: Is it possible???

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 24 Jun 2013, at 13:02, Karl-Arne Gjersøyen <karlarneg@xxxxxxxxx> wrote:

> Error in my last post This is corrected:
> 
> $item_amount_in_store = 223;
> $update_amount = 7;
> $item_amount_in_Store += $update_amount;
> 
> It show the result = 227 and not 230. Why is this happen?

Something else is going on to give you 227, but variable names are case sensitive which is why you're not getting what you expect.

<?php
$item_amount_in_store = 223;
$update_amount = 7;
$item_amount_in_Store += $update_amount;
var_dump($item_amount_in_store);
var_dump($item_amount_in_Store);
?>

Output:

int(223)
int(7)

-Stuart

-- 
Stuart Dallas
3ft9 Ltd
http://3ft9.com/

> ---------- Forwarded message ----------
> From: Karl-Arne Gjersøyen <karlarneg@xxxxxxxxx>
> Date: 2013/6/24
> Subject: Is it possible???
> To: PHP Mailinglist <php-general@xxxxxxxxxxxxx>
> 
> 
> $item_amount_in_store = 223;
> $update_amount = 7;
> $update_item_amount_in_store += $update_amount;
> $update_amoint_in_store is now 227;
> 
> Why? That should be 230!
> 
> Karl
> 
> 
> 
> -- 
> Hjemmeside: http://www.karl-arne.name/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php






[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux