-2
votes
1answer
74 views

PHP Get String Text From Bytes [closed]

I was wondering how one would get the Text representation of a series of bytes in PHP? (Basically, the PHP version of C#'s Encoding.getString(string s) method.) I've been scouring google, and I can ...
-1
votes
2answers
150 views

convert unix time to w3 time in php [closed]

the database has fields stored in unix time, ie. 1328202426 and I have an api call of an open source standard that takes w3 time, ie. 2010-01-01T00:00:00Z a) convert w3 time, to the unix time b) ...
1
vote
7answers
170 views

get integer / float from string in PHP

I ran into an issue with a data feed I need to import where for some reason the feed producer has decided to provide data that should clearly be either INT or FLOAT as strings-- like this: ...
0
votes
1answer
191 views

& converted to &amp between sql and saving to database [closed]

I have a sql query running from my php page. It stores various text. If I try to store &, it is stored in the database as &. I do not know why. I have output the sql that is being run and ...
2
votes
2answers
283 views

Change data type of keys in array from numeric to string

I have two arrays with numeric keys. This is a small example: $test_a = array(1 => 'one', 2 => '二'); $test_b = array(2 => 'two', 4 => 'four'); I want to merge them, with array_merge(), ...
1
vote
0answers
122 views

Pro regex converting these impossible-to-regex examples?

Example of input vulture (wing) tabulations: one leg; two legs; flying father; master; patriarch mat (box) pedistal; blockade; pilar animal belly (oval) old style: naval jackal's belly; jester ...
0
votes
3answers
477 views

Insert a PHP false into mysql

My MySQL table contains a tinyint(1) value that i use to store a true or false value. I have the following PHP variables: $name = ''; $description = ''; $active = true; Now my SQL query is as ...
1
vote
3answers
62 views

php-how to conversion Time

How to conversion time with php? the original format like 00:02:34 min I need to get a echo like 154 Thanks.