Tagged Questions
0
votes
0answers
11 views
which direction does CDbl round to
i am current doing a code conversion between asp to php, in the asp code i have
(CDbl(Left(.NumberStr, 9))
in php, i can do the exact same with this code
...
1
vote
3answers
48 views
php foreach is outputting everything twice
everything works fine, but the output is being listed twice.
so it echos out: 'output a' 'output a' 'output b' 'output b' 'output c' 'output c' and so on.
when i do a mysql query in phpmyadmin, ...
5
votes
5answers
104 views
Error With Using (int) and (double) together to Cut off Decimals
When I am using (int) with (double) some times it is not working correct.
Look At The PHP Code Example:
I Need To LEAVE 2 Decimals And REMOVE Other...
I Know number_format(); function But I Cannot ...
0
votes
3answers
95 views
Php length of cyrillic string doubles its value
Hello here it is the problem:
when i get to the $_POST latin string strilen() works perfectly, but when i get cyrillic string strlen() doubles its value here is the code:
$word = $_POST['word'];
echo ...
2
votes
1answer
112 views
PHP modulus operator for doubles
I read here that:
Modulus with non integer numbers will give unpredictable results.
However, I tried to play a bit with it, and it seems to give pretty predictable results:
function mod($a, $b) ...
0
votes
2answers
130 views
PHP regex to replace double or more characters with single character [closed]
Why the following won't work?
<?php
$text = 'Hell looo w orlldddddd!!!!!!!!!';
$sanitized = preg_replace("/(\w|\s)\1{1,}/mi","$1",$text);
echo $sanitized;
?>
The output expected ...
-1
votes
1answer
237 views
multiple for from double value combobox PHP
i tried to getting and saving double values from combobox to the database. But i couldn't do it.
this is my combobox.
<select name="answers[]" id="answers">
<option value="<?PHP echo ...
0
votes
1answer
37 views
How to create a numeric array of elements in associative array by type
How can i create a new array from elements in associative array in the way that if values is integer then put that value on first place in a new array,on the second place put double,on the third ...
0
votes
0answers
23 views
i am trying to integrate amazon checkout standard haveing a issue with is_double()
I am trying to integrate amazon checkout standard and for some reason is_double() keep giving me false.
i was wondering how does is_double() check if a number is double or not?
What counts as ...
1
vote
1answer
216 views
Sending empty values with PDO results in error
We have something like the following PDO Statement which we use to communicate with a PostgreSQL 8.4 DB.
$st = $db -> prepare("INSERT INTO Saba.Betriebskosten (personalkosten)
...
0
votes
1answer
65 views
mysql is inserting doublepost
I have a problem with mysql inserting. When the button is clicked, mysql insert is making a doublepost. I can't find the problem. Why is it doubleposting?
code here http://pastebin.com/z1xx3fjt
And ...
0
votes
1answer
55 views
Strange floating point result behavior despite explicit casting
Well I have been on this problem the entire day and I think that qualifies the need for some help.
PHP
$hour1 = (float) $date1 / 10000;
$hour1 = (float) floor($hour1);
$hour2 = (float) $date2 / ...
4
votes
1answer
2k views
Warning: number_format() expects parameter 1 to be double
I am getting Warning: number_format() expects parameter 1 to be double error on my code
$tbl->addRow();
$tbl->addCell($name);
$tbl->addCell('$' . number_format(doubleval($price), 2,',', ' ') ...
2
votes
3answers
82 views
Maths error in PHP - number truncated?
I have the number 2.50 stored in a variable called $price which I can pass to a function and it recognizes the value 2.50 however when I try and multiply it with 2 I get the answer 4. I assumed PHP is ...
0
votes
3answers
596 views
Converting Comma Separated Value to Double Quotes comma separated string
I have a comma separated value like
alpha,beta,charlie
how can i convert it to
"alpha","beta","charlie"
using a single funcion of php without using str_replace?
2
votes
2answers
296 views
PHP replace double-lines with one HTML Break
I am trying to replace all \n\n on my server with the <BR> tag so that a single \n does not turn into <BR>.
Example:
Hello,\n\nThis is an\nexample.\n\nThanks!
goes to:
...
0
votes
1answer
91 views
PHP boolean expression behavior between int and string
I'm having trouble grasping why the following two boolean expressions return different outcomes.
(0 == "some_string") returns TRUE
(0 === "some_string") returns FALSE
I understand that the second ...
1
vote
1answer
1k views
Convert string (similar json format) to object or array
I receive string "{success: false, errors: { reason: 'text text text' }}" by CURL, how to convert this string to array or object?
String '{"success": "false"....}' may be converted to object by ...
1
vote
4answers
2k views
How to display two decimals in MYSQL/PHP?
I'd like to display £2.00 instead of £2 or £3.50 instead of £3.5.
These number let's say 'price' is defined as DOUBLE in a MySQL database. How can I force MySQL or PHP to display the two decimals?
...
1
vote
3answers
851 views
Prevent double voting
I'm creating a web application where users will vote for some candidates by clicking thumbs up or thumbs down, and these users won't have any account on the site.
What is the best technique to use? ...
0
votes
2answers
431 views
post-redirect-get and posting double entries into Database
I am currently doing a web application project for my final year in school. I am more of a web designer than a web developer so I need as much help as I can get!
For my project, I am create a ...
0
votes
1answer
1k views
Doctrine 2 - MySQL data type Double in YAML
I'm using codeigniter with Doctrine 2 with CodeIgniter2.
I used YAML Schema files to define database schema.
I want to define two columns in my table with MySQL data-type Double.
Below is the YAML ...
1
vote
4answers
485 views
PHP - Comparing double to a string is weird?
I'm seeing some weird behavior in php when comparing a double to a string and was hoping someone could explain to me what is going on.
If I declare $num = 0.333;
and then test
$num == '0.333',
this ...
0
votes
3answers
272 views
Odd behaviour comparing doubles
I have two seemingly equal doubles (at least when echoing them). When comparing them, for some reason, it evaluates to false. Are there any special considerations when performing this kind of ...
0
votes
3answers
213 views
Mystified about making a PHP double-query dynamic list work. Using PHP 5.3.5
I'm trying to create a dynamic list (5 row results) in php by first getting data from one table then using a resulting var to get the latest uploaded "image_links" (just 1 from each of the 5 artists) ...
0
votes
1answer
745 views
Variable inside double quotes in PHP array keys
I've something weird into my code and I really don't get the behavior...
I always used array with string variables keys like this :
$string = "my key";
$array[$string] = "my value";
But in ONE ...
2
votes
5answers
2k views
Convert a string containing a number in scientific notation to a double in PHP
I need help converting a string that contains a number in scientific notation to a double.
Example strings:
"1.8281e-009"
"2.3562e-007"
"0.911348"
I was thinking about just breaking the number into ...
0
votes
2answers
267 views
php double overflow problem
I'm sure this is quite simple but I can't find the answer.
I'm passing a double into a PHP page, and retrieving it with the code:
$timestamp = $_POST['timestamp'];
The number being passed ...
8
votes
7answers
1k views
Storing price in PHP. What is better double or string?
I've been making "Product Object" for my app and I've been setting attributes, when suddenly I got to price attribute and stumbled upon it with question what type better to choose? I understand, that ...
-1
votes
1answer
2k views
PHP/MySQL won't update decimal field
I have this query:
UPDATE table_name
SET field_1 = field_1 +100,
field_2 = field_2 +100,
field_3 = field_3 +100
WHERE id = 1
LIMIT 1;
Where Field_1 is regular integer, Field_2 is ...
0
votes
2answers
2k views
Multiple left joins, how to output in php
I have 3 tables I need to join. The contracts table is the main table, the 'jobs' and 'companies' table are extra info that can be associated to the contracts table.
so, since I want all entries ...
9
votes
8answers
6k views
PHP check if variable is a whole number
I have this PHP code:
$entityElementCount = (-($highScore-$totalKeywordCount))/0.29;
What i want to know is, how to check whether $entityElementCount is a whole number (2, 6, ...) or partial (2.33, ...
1
vote
3answers
836 views
mysql query adding to a decimal doubles value of the addend for some reason
I am trying to add a value ($credit) to the value of a decimal (9,2 max length) field in a mysql database. The problem is that when I do this, it doubles the $credit and then adds it for some reason. ...
3
votes
3answers
3k views
PHP static variables in double quotes
How can I get PHP to evaluate a static variable in double quotes?
I want to do something like this:
log("self::$CLASS $METHOD entering");
I've tried all sorts of {} combos to get the variable ...
0
votes
2answers
827 views
PHPExcel: scientific notation of double/float
The problem is the following:
We are creating an instance of a class testObject and fill a var with a double.
A class TestExcel extends from PhpExcel and when submitting the object testObject into ...

