Tagged Questions
0
votes
1answer
27 views
Exploding every character except numbers with PHP
I have an URL which I am trying to explode evreything out of it and get only the numbers in it... it looks something like that: www.url.com/blalb/5435/blabla
The url is different all the time, so I ...
1
vote
1answer
49 views
How to add an if statement into this php function
I need to insert an if statement in the code below:
add_filter('add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment');
function woocommerce_header_add_to_cart_fragment( $fragments ) {
...
0
votes
3answers
45 views
Regex - PHP - Match a string start with number and : end before number: [closed]
I have a string like that:
1: Blah blah blah blah 2:blah blah blah blah .... 100: blah blah blah blah
I wanna replace it with
<span class="meaning">1: Blah blah blah blah</span>
...
-2
votes
1answer
48 views
Generate 5 random numbers that it SUM a determinate quantity in PHP or JS [closed]
I want to set an x number for example 4000 and I want to set in how many random numbers that will SUM that number
Number: 4000
how many random: 5
Result:
1538 597 817 693 355
And if I sum that ...
0
votes
1answer
34 views
how do i generate sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is not generating series numbers?
i want script generate number like this
...
0
votes
3answers
28 views
Adding commas in numbers of four or more digits
I have a php script that echoes the view count of a Youtube video using the Youtube API. However, I would like it to add commas when reaching views in the thousands and over.
My code is below:
$JSON ...
0
votes
3answers
68 views
i need help to generate a sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is generating random numbers?
if for loop reached to the 999 then ...
0
votes
1answer
26 views
PHPBB checking input is number
I'm using data_verification to check the values from the post array as follows...
if ($_POST)
{
$validate_array = array(
'recipe_name' => array('string', false, 5, ...
0
votes
1answer
36 views
gmp_pow() will not accept a GMP number for exponent
I am playing around in PHP with RSA and big numbers. I need to be able to take numbers to the power of an exponent that has ~256 to ~512 bytes using gmp_pow(). Does anyone have any suggestions?
0
votes
2answers
45 views
how do i generate series of numbers?
i need help to generate series of number and it should be generate series of number when
form is submitted i have code but it not working properly?
For Example I Want Like This
00500
00501
00502
...
1
vote
1answer
66 views
magento pagination numbers not working
I am working on existing magento site, and this is my first magento development.
There is option for "Items per page", but no pagination shown.
I need to show pagination with numbers like 1,2,3,4... ...
0
votes
3answers
54 views
keep format of number and decimal but remove everything else
I have a input fields for state and local tax.
Each field data is entered then I add both together to get totaltax.
I have tried number_format and round and print_f but none of them are working as I ...
0
votes
2answers
53 views
How to perform MySQL 'SUM' but to '0' decimal places?
I have a MySQL table containing account balances, which are stored as floats, with two decimal places, in a varbinary column type (because the values are AES_ENCRYPTED).
I realise that it's not ideal ...
0
votes
4answers
39 views
PHP Regex Separate Number from String
I have the following string: 01SOMECOMPANY and I want to end up with 01 SOMECOMPANY. How do I do this using regular expressions?
1
vote
5answers
74 views
How to find closest number in a multidimensional array? [closed]
I got a mulitdimensional array that looks like this:
Array
(
[0] => Array
(
[name] => Name
[city] => Cityname
[county] => County
...
1
vote
6answers
72 views
Convert integer into X characters string in PHP
I have an integer that I need to convert into a 4 digits string. I know the integer number is between 1 and 9999. If the number is 4, I want the output string to be "0004". If the number is 134, I ...
0
votes
0answers
85 views
Regex to match UTF-8 Characters (like ı, ş, ğ … also) and Numbers and dash [closed]
After my question at php URL interpreting - can't make custom 404 page loaded, because of the comment of user1737909 who wrote me that "your .htaccess list pages you can access. Do not use that - ...
1
vote
3answers
52 views
PHP format numbers hiding zeros
In order to fill a tab with lots of values, I would like not to display values which are equal to '0'.
For example, instead of having :
Test USER 1 0 1 0
Sample USER 1 0 1 0
I'd like ...
1
vote
2answers
22 views
How to manage number values with points?
$val represents 1,949.58 from my sql
$sold = 50;
if ($val>$sold){
echo "true";
}
else
{
echo "false";
}
I get false. somehow 50 is bigger than 1,949.58 and this ...
0
votes
3answers
98 views
Mysql / php - id numbers reached 9999 and started counting from 0001
I have a PHP website which takes customer applications. Each application is given an ID number which is incremental.
Recently the site reached application id number 9999 but instead of continuing on ...
0
votes
2answers
43 views
PHP Regexp - if custom punctuation symbols are side-by-side, then regex doesn't match
my regexp
/^[\p{L}\p{N}][\p{L}\p{N} \.,;:\?!-“”‘’"']+$/u
aim of regexp
allow utf-8 characters, numbers, spaces AND custom punctuation to verify article title
these inputs below don't match but I ...
1
vote
3answers
82 views
PHP - Correct way to add space between numbers?
Probably a simple problem if you know the answer.
What I have
Numbers with no spaces.
$str = 10000;
$str2 = 100000;
What I want
Convert above to below...
$str = '10 000';
$str2 = '100 000';
...
-1
votes
3answers
53 views
php how to shorten the file size from Byte unit to larger unit without number rounding
Let I take an example to explain it which I expect.
Example:
I have file size '3147483648 Bytes', and I want to convert it to following appropriate file size:
2 GB + 70 MB + 333 KB + 512 Bytes.
Any ...
-1
votes
1answer
53 views
Jquery/Javascript/PHP: Display every number with two decimals
I have a (hopefully) quick and short question. I try to find a Javascript, Jquery, or PHP function that allows me to display every number on a webpage with two decimals. Basically, 0 should be 0.00, ...
0
votes
2answers
120 views
PHP: How to check if string contains just 1 same number [duplicate]
I've got a Call Me Back form which sends me a phone number of a person who wants to be called back. Today I received the form with '88888888' instead of a real phone number.
How can I check if the ...
-1
votes
1answer
24 views
How to replace all, and then add a numbering sequence marking replacements?
Hello I have the instance of the filename: losangeles.php 2252 times and I want to change it to losangeles-0001.php, losangeles-0002.php, losangeles-0003.php so on and so on, up till ...
3
votes
4answers
88 views
str_replace any number?
i have a little problem about str_replace any number ...
$jud='Briney Spears 12 2009';
$jud=str_replace(array('2007','2008','2009','2010','2011','2012'),'2013',$jud);
...
-1
votes
4answers
87 views
Generate a username with random numbers behind
So far I got only this which generate random numbers instead.
function randomUsername() {
$number = "0123456789";
$username = array();
$numberLength = strlen($number) - 1;
for ($i = ...
1
vote
6answers
92 views
why variable can not start with a number
i am working in php, i have to define variables in sequence to save in mysql..both field name and variable name must be same in my case.
Can i declare a variable like this
$1 OR $2 etc
If not why ...
-2
votes
2answers
35 views
How can i modify the php code to recieve 5 numbers without duplicates/repeating numbers?
i have this php code:
<?php
function GetRand($N, $min=1, $max=59) {
$Local = array();
mt_srand(time());
for ($i=0;$i<$N;$i++)
$LocalArr [] = mt_rand($min, $max);
return $LocalArr;
}
$A = ...
0
votes
0answers
69 views
PHP delete and update query
I have a very interesting problem with my php script. Sometimes it works exactly how it has to work, sometimes it works incredibly bad. So the problem is when people delete some new from database the ...
0
votes
0answers
51 views
PHP number out of integer limit [duplicate]
How to convert
2.01303061001E+12
to actual value using php
Now it is in the form of 10 ^ 12 format.
Anyone know how to manage these type of big values using PHP
2
votes
2answers
73 views
PHP increase number by one
This is a tricky one: I want to add +1 to this number: 012345675901 and the expected result is: 012345675902. Instead I get: 2739134 when I do this:
echo (012345675901+1);
When I try:
echo ...
0
votes
3answers
113 views
PHP number format 4 digits [duplicate]
For example, I have this format:
$s_number = "12";
I need output:
0012
Other example:
$s_number = "3";
I need output:
0003
Every time I need 4 digits.
0
votes
3answers
61 views
get a string within a string - php
I have a string:
[gallery ids="2282,2301,2302,2304,2283,2303,2285,459,1263,469,471,1262,1261,472,608,467,607,606,466,460"]
The ids will vary, but how can I (in PHP in CodeIgniter) get the values?
...
-5
votes
1answer
63 views
Format numbers like Facebook “likes” - PHP [closed]
I need of a function in PHP to format numbers like Facebook "likes".
Example:
12345 = 12,3 K
123456 = 123 K
1234567 = 1,23 M
Thank you!!
0
votes
4answers
115 views
How to convert a “decimal string” into an integer without the period in PHP
If I have, say, 8.1 saved as a string/plaintext, how can I change that into the integer (that I can do addition with) 81? (I've got to remove the period and change it into an integer. I can't seem to ...
0
votes
3answers
28 views
How to remove a part of a string prior to a symbol in PHP
This should be simple to answer, I'm just very new to this all...
If I have the following (the 89 is NOT constant — it could be 2, sometimes 3 numbers — but the /100 is):
89/100
how can I get ...
0
votes
1answer
152 views
force 2 decimal places in PHP without comas when variable given could have no value
I need to take a $_POST variable and force it to have 2 decimal places with no comas.
The below works but surely this cant be the best way to do this.
$difference = ...
0
votes
2answers
120 views
php random number code that uses same random number throughout session
I found a php random number generator here which works on my Wordpress site. The actual code (see below) displays a new random number when the browser reloads. My goal is to have the same random ...
1
vote
4answers
79 views
PHP - get closest number given a certain number?
I'm modifying one of OpenCart's product filters to filter products in/out by price. What I do is get all products belonging to a certain category and extract their prices to put them in a slider, but ...
0
votes
2answers
55 views
sort multidimensional array with floats
I have a multidimensional array with locations data (e.g. address, phone, name,..) and their relative distance from a certain point as floats (e.g. 0.49012608405149 or 0.72952439473047 or ...
0
votes
2answers
78 views
PHP function for float or double comarision (bccomp and gmp_cmp)
PHP Suggested to use these function for floating point number comparison [here]
bccomp — Compare two arbitrary precision numbers
int bccomp ( string $left_operand , string $right_operand [, int ...
0
votes
1answer
27 views
What does float argument and -ve number do in printf function in php
I am running these two printf() functions and little bit confused with the output generated by them.
printf("%0.4f",3467);
It outputs - 3467.0000. In first parameter that is 0.4f 4 is understood ...
0
votes
4answers
61 views
how to get the numeric position of the array using php
i want to get the exact numeric position of the value in the array
array value:
$val = array('banana' , 'second' , 'apple');
when user search for the value apple
it will display
3
because ...
0
votes
4answers
152 views
How can I check if number has one , or two decimals?
I would like to know how I can check if a number has one or two decimals, and if it only has one decimal , like 12,9 for example, then echo the number with an additional 0, so it looks like 12,90.
...
3
votes
1answer
149 views
Numbers to Roman Numbers with php
I need to transform ordinary numbers to Roman numerals with php and I have this code:
<?php
function roman2number($roman){
$conv = array(
array("letter" => 'I', "number" ...
0
votes
2answers
40 views
PHP alternative syntax and string/number comparison
I can go out of this. Normal syntax seems to work, otherwise alternative syntax seems not to work as expected.
<?php
$num = "abcdefghi";
function checkNum($n) {
if(!is_numeric($n))
{
...
1
vote
3answers
51 views
Convert/Adjust Number in a specific counting with PHP
I have the number 1543, I want to make sure that I find the number closest to 1543 which is counted every 100. For eg:
1527 = 1500
1563 = 1600
12034 = 12000
12081 = 12100
I hope ...
2
votes
3answers
122 views
How can I simplify a percent (ex. 25%) to a simple statement (ex. 1 out of 4)?
I need to convert an array of numbers and totals into a simple statement.
For example, how can I convert the following, programmatically via PHP, to simple statements like, 1 out of 10, 1 out of 100, ...









