Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I need to convert the following date in to Unix format using php code.
2014-06-10T11:05:10.723Z to Unix?
The reason this has so many downvotes is it takes a single in-built function to change a Date to a timestamp, using a single Google search to find.
echo strtotime("2014-06-10T11:05:10.723Z");
Outputs:
1402398310
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I use MYSQL, PHP 7.2 and MVC architecture but sometimes after inserting data into invoice_table table, invoice_table shown as an empty table, after couple minutes data will come back again.
My Problem is solved by RESTARTING MySql service and thanks to #ADyson and #Your_Common_Sense for Helping me :|.
real Thanks to #Undry.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I was trying to build a script that could get me definitions of words from the wikipedia API in php.
I tried several obtaining the definitions in an array and displaying the first definition but it didn't work. Can anyone please help me out. Any help is appreciated
Which parameters did you use in your request?
You can take this as an example:
https://en.wikipedia.org/w/api.php?action=opensearch&search=PHP&limit=1&format=json
You said there that you want only the first definition, so you can put limit=1. The response is in json.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I have problem about PHP and MySQL. I write information to MySQL database, but "ü,ö,ğ,ç,ş," letters change to çşöğüıə.
Looks like an encoding problem.
Try utf8_encode() function.
You may wanna refer to this: utf8_encode() manual
Hope this helps.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I was successful in querying the Graph Api and receive the user birthday,but unable to print it.
My API call: /me?fields=id,name,picture,birthday{date};
echo $user['birthday'];
I am receiving this error while trying
Please help,i am newbie to PHP...
Use this to get birthday:
echo $user['birthday']->format("Y-m-d H:i:s");
you can't just echo ['birthday'] because it is a datetime object so you need to use a function of the DateTime object to convert to string.
What is the result of :
print_r($user)
Available indexes will be printed.
You would consider to test your variable with this 2 functions : is_array($user) and isset($user['birthday'])
http://php.net/manual/en/function.isset.php
http://php.net/manual/en/function.is-array.php
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Whould like to make 10000 thousands to become 10 million in PHP.
Well actually I only need to remove 3 zeros from the end I guess...
Please help trying to figure it out!
$turnover=10000;
...?
If you want to change it to 10 million, you will need to multiply
$turnover=10000*1000;
If you want to get 10000 you will need to divide.
$turnover=10000/1000;
Try reading some basic PHP documentation. There is a lot of good online tutorials to find.