Jump to content

Add two strings together = 0 ???


raytaylornz

Recommended Posts

I have the following code and am trying to add the strings together to make a total.

The monthup and monthdown strings are extracted from a text file earlier in the script.

 

 

echo "$monthup <br>";

echo "$monthdown <br>";

$answer = $monthup + $monthdown;

echo $answer;

 

 

It outputs

 

36809697

565151504

0

 

The last line should be the other 2 added together which equals 601961201

 

Anyone got any ideas?

 

Thanks in advance for any help you can give. As you can see I am new to php.

Link to comment
Share on other sites

you could do

echo "$monthup <br>";
echo "$monthdown <br>";
$answer = (int)$monthup + (int)$monthdown;
echo $answer;

or

$monthup = (int)trim($monthup);
$monthdown = (int)trim($monthdown);
echo "$monthup <br>";
echo "$monthdown <br>";
$answer = (int)$monthup + (int)$monthdown;
echo $answer;

You may need to cast them to numbers as an integer or a real number[ use (real) instead of (int)] before adding them together. if the variable has a space before the number by accident, trim() will remove it.

Link to comment
Share on other sites

PHP strings can be accessed with array operator

 

<?php

$f = "PHP Freaks";

for ($i = 0; $i < strlen($f); $i++) echo $f[$i];

That's where confusion may be coming from.

 

However, you can't do this with foreach and is_array($f); will return false.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.