Tagged Questions
56
votes
13answers
186k views
PHP ToString() equivalent
How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string:
$myText = $myVar . '';
like the ToString() method in Java or ...
35
votes
4answers
19k views
How do I convert a PDF document to a preview image in PHP?
What libraries, extensions etc. would be required to render a portion of a PDF document to an image file?
Most PHP PDF libraries that I have found center around creating PDF documents, but is there a ...
16
votes
11answers
12k views
How do I convert Word smart quotes and em dashes in a string?
I have a form with a textarea. Users enter a block of text which is stored in a database.
Occasionally a user will paste text from Word containing smart quotes or emdashes. Those characters appear in ...
15
votes
5answers
646 views
Conversion from Simplified to Traditional Chinese
If a website is localized/internationalized with a Simplified Chinese translation...
Is it possible to reliably
automatically convert the text to
Traditional Chinese in a high quality
way?
If so, is ...
10
votes
6answers
1k views
How to convert a Roman numeral to integer in PHP?
Using PHP, I'd like to convert a string containing a Roman number into its integer representation. I need this because I need to make calculations on them.
Wikipedia on Roman numerals
It would ...
9
votes
3answers
6k views
HTML+CSS to RTF (in PHP)?
I am desperately seeking a solution to converting HTML + CSS (2.1) to RTF in PHP. While I have found a superb solution for HTML to PDF in Prince XML, I've yet to find anything that:
can convert ...
7
votes
3answers
964 views
How do you convert a parent-child (adjacency) table to a nested set using PHP and MySQL?
I've spent the last few hours trying to find the solution to this question online. I've found plenty of examples on how to convert from nested set to adjacency... but few that go the other way ...
7
votes
4answers
1k views
Algorithm to get the excel-like column name of a number
I'm working on a script that generate some Excel documents and I need to convert a number into its column name equivalent. For example:
1 => A
2 => B
27 => AA
28 => AB
14558 => UMX
I ...
6
votes
5answers
2k views
PHP HSV to RGB formula comprehension
I can convert RGB values to HSV with the following code...
$r = $r/255;
$g = $g/255;
$b = $b/255;
$h = 0;
$s = 0;
$v = 0;
$min = min(min($r, $g),$b);
$max = max(max($r, $g),$b);
$r = ...
6
votes
7answers
1k views
How to add 4 hours to time in PHP/MySQL
I'm working on a blog migration from a custom built blog to Wordpress. One of the fields that Wordpress is looking for in the database is a date/time stamp set to GMT, which is 4 hours ahead of our ...
6
votes
4answers
575 views
What do sites like Google Docs and Zoho Writer use to generate MS Office documents
I realise this may just be speculation, but I'd appreciate comments from anyone who has some insight into this.
Something like MS Word COM add-in, or an OO bridge, or a custom implementation.
The ...
5
votes
2answers
187 views
How do I convert a string the looks like a hex number to an actual hex number in php?
I have a string that looks like this "7a" and I want to convert it to the hex number 7A. I have tried using pack and unpack but that is giving me the hex representation for each individual character. ...
4
votes
1answer
37 views
How to convert this PHP RegEx match pattern to .Net
This is a pretty complex regular expression that returns an array of key/value pairs from a proprietary string of data. Here is sample of the data, in case the express can not be used in .Net and ...
4
votes
1answer
479 views
converting dates between timezones in AppModel->afterFind (cakePHP)
I have a cakePHP application that is pulling data from two different databases, which store dates and times in their data from different timezones. One database's timezone is Europe/Berlin, and the ...
4
votes
4answers
3k views
PHP boolean to string with modification & a condition
When echoing a boolean (true or false), PHP converts it to 1 or <nothing> and displays it. e.g.:
$x = true; echo $x; //displays: 1
$x = false; echo $x; //displays: <nothing>
My ...
4
votes
2answers
75 views
php array conversion help needed
$cnt[0]=>Array( [0] => 0 [1] => 0 [2] => 0 ),
$cnt[1] => Array ( [0] => 1 [1] => 0 [2] => 0 )
i want convert this array to below result,
$cnt[0]=(0,0);
...
4
votes
1answer
372 views
Is there a faster/better way to leettime?
I found leettime via twitter, and it's novel enough for me to want to mess around with it/share it with you guys. To my dismay this version doesn't do seconds. It also seems like there might be a more ...
4
votes
3answers
9k views
php: convert milliseconds to date
I Have a string that is equal to a date, represented as the number of milliseconds since the Unix epoch.
I am trying to output it into d-m-Y.
The string I was given was "1227643821310", and I am ...
4
votes
3answers
6k views
Converting pdf files to txt files with php
There's this program, pdftotext, that can convert a pdf file to a text file. To use it directly on the linux console:
pdftotext file.pdf
That will generate a file.txt on the same directory as the ...
3
votes
1answer
278 views
Is it possible to use Google Docs API to convert text string to PDF
Recently I found, that Google Docs have their own PHP API. Honestly I haven't read it all, but I wonder is it possible If for example I have XML file or just text string in variable and I would like ...
3
votes
1answer
1k views
Convert PNG to JPG and set transparent background to white with ImageMagick and PHP
How can I use ImageMagick (with the php extension) to set the transparent background to white when converting an image from PNG to JPEG?
3
votes
1answer
600 views
how to compare two timestamp values from mysql with php
I have a db with time stamp values in this format: 0000-00-00 00:00:00 When I add this to the db I add a minutes to the current time. Now I need to check if the current time has passed the value added ...
3
votes
3answers
827 views
Function that converts hex color values to an approximate color name?
I don't suppose anyone knows of a function (PHP, preferably) that can take a hex color code and give an approximate color name for that hex value. I don't need a solution with 100s of colors. Even if ...
3
votes
9answers
4k views
PHP Convert timestamp to months and days
How can I convert a timestamp difference between 2 dates ( $diff = abs(strtotime($date2) - strtotime($date1)); ) to months and days quantity (ouput: $res = 4.05 -> 4 months and 5 days)?
Thanks.
3
votes
2answers
344 views
PHP typecasting float->int
Given this PHP code:
// total is 71.24 (float)
$value = $total * 100;
var_dump($value);
$valuecast = (int)$value;
var_dump($valuecast);
settype($value, 'int');
var_dump($value);
var_dump($value) ...
3
votes
2answers
4k views
High-quality PDF to Word conversion in PHP?
What's the best way of converting PDF docs to Microsoft Word format in PHP? This can be either as a PHP script or calling a (Linux) executable (with proc_open()). It just needs to be relatively fast ...
3
votes
5answers
7k views
How do you convert an image to black and white in PHP
How does one go about converting an image to black and white in PHP?
Not just turning it into greyscale but every pixel made black or white?
2
votes
3answers
73 views
Should I use Regex to parse my file, or is there a better way? [closed]
I have a file with over 2000 lines that I need to parse. I want to make sure I get 100% accurate results, which will then be imported to my MariaDB.
The file looks like this:
line 0: #start#
line ...
2
votes
2answers
481 views
How to extract text from the PDF document?
How to extract text from the PDF document using PHP?
(I can't use other tools, I don't have root access)
I've found some functions working for plain text, but they don't handle well Unicode ...
2
votes
3answers
478 views
Convert float to string in php?
Like:
float(1.2345678901235E+19) => string(20) "12345678901234567890"
Can it be done?
(it's for json_decode...)
2
votes
4answers
95 views
What is the proper way to convert ip to integer in php?
So I need to store IP addresses in database, but storing them as stings is not very efficient and not very convenient for my purpose.
So... How can I convert ip into integer in php with as less ...
2
votes
1answer
64 views
Problem with UTC timstamp conversion on in PHP/MySQL on a per connection basis
I want to be independent from the timezone configured on a server so in a script I set the time zone like this:
mysql_query("SET time_zone = '".date_default_timezone_get()."';");
The server is ...
2
votes
2answers
111 views
MySQL tables to xml files: update files when tables are updated
I have a MySQL database and I need to turn its tables into xml files.
Using phpMyAdmin, I can do this conversion by exporting each table to xml format.
But there's no use anyway, because I don't ...
2
votes
6answers
167 views
convenient way to convert seconds into more specific format
Is there any convenient way to convert seconds into more specific format.
For example:
I want to convert
559 seconds
to
9 min 19 sec
2
votes
4answers
180 views
Convert special characters like ' \t ' to “ \t ” (a real tab)
I want to make a CSV file importer on my website. I want the user to choose the delimiter.
The problem is when the form submits, the delimiter field is stored as '\t', for example, so when I'm ...
2
votes
4answers
328 views
Why does PHP convert String to Integer?
I would like to know on what condition PHP decides when to convert from String to Integer and the other way around
Example:
$key = 0;
$test = 'teststring';
if($key == $test) {
echo "Why, tell ...
2
votes
2answers
177 views
Javascript problem - not passing string with leading '0' to string properly
I have a weird problem.
I have a simple function to open a popup with information about a pin (by clicking on a link with that PIN)
It works fine for some pins, but converts others to a different ...
2
votes
1answer
657 views
Recover Magento checkout details where customer goes to Paypal and never returns
When using Paypal Standard or Paypal Express, customers are directed to the Paypal website to either complete the sale, or sign in to their Paypal accounts to verify payment, respectively. There is a ...
2
votes
3answers
667 views
open source audio converter to mp3
I'm looking for an open source audio conversion library that can convert audio files of various types to MP3. The server I'm working with is a standard LAMP with PHP. Anyone aware of something that ...
2
votes
2answers
361 views
How do I convert a EPS , DOC and PPT document to a preview image in PHP?
How do I convert a EPS , DOC and PPT document to a preview image in PHP?
I need to display the image thumbnails in the list of items uploaded, how can i get the thubnail images of EPS, doc and PPT ...
2
votes
4answers
1k views
PHP convert cyrillic
Which method of transliteration is true to convert cyrillic letters to latin letters?
Like writing russian names using english alphabet.
There are many methods of conversion, searching for one that ...
2
votes
1answer
201 views
Parameterizing php code with DatePeriod, DateInterval classes
I dont understand DatePeriod, DateInterval classes very well. This question is linked to another one - ...
2
votes
2answers
448 views
Recognizing a character to be Chinese and get Chinese “pinyin” phonetics from simplified characters?
Is it possible to
A) find out if a character is Chinese (simplified)
and in that case
B) get the pinyin? example: 你好 => nǐhǎo
using java or php?
Cheers
2
votes
3answers
206 views
Looping over an array to build a multidimensional array in Perl, converting from PHP, and syntactically wrong
Working on converting an array to another array. In PHP, this is easy, but Perl has some syntax that I am having a hard time getting my head around and understanding.
Here is my loop in Perl:
...
2
votes
5answers
1k views
Convert png file to ico with PHP
I would like to create a PHP script that convert a png file to an ico file. Is it possible to do it just with PHP ? How ?
Thanks !!!
2
votes
3answers
2k views
Convert a string to a double - is this possible?
Just wondering in php, if it was possible to convert a string to a double. I am using a financial web service which provides a price as a string. I really need to process this as a double and was ...
2
votes
4answers
474 views
Output RSS feed as html?
Are there any free php/javascript libraries out there which would help in displaying an RSS feed as html?
2
votes
3answers
73 views
Coverting an int to a different base. php, .NET
Hey I have seen sites that instead of an int show you a string.
For example d2fr4st == 147392525 and d2fr4ss == 147392524. What base is this? And how can I do the same conversion in php and .NET?
At ...
2
votes
3answers
791 views
HTML to plain text (for email)
Do you know any good HTML to plain text conversion class
written in PHP?
I need it for converting HTML mail body to plain text mail body.
I wrote simple function,
but I need more features like ...
2
votes
1answer
939 views
How to determine UTC offset from server timezone?
I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page.
On ...