I'm looking for a way to create valid UTF-16 JavaScript escape sequence characters (including surrogate pairs) from within PHP.
I'm using the code below to get the UTF-32 code points (from a UTF-8 encoded character). This works as JavaScript escape characters (eg. '\u00E1' for 'á') - until you get into the upper ranges where you get sur...
Welcome,
I notice that Youtube make some changes into their website code.
Anyone have idea how make it working today ?
That's my script (don't work anymore)
preg_match('/"video_id": "(.*?)"/', $page, $match);
$var_id = $match[1];
preg_match('/"t": "(.*?)"/', $page, $match);
$var_t = $match[1];
Look at source of example Youtube vid...
In my regex, I want to say that within the sample text, any characters are allowed, including a-z in upper and lower case, numbers and special characters.
For example, my regular expression may be checking that a document is html. therefore:
"/\n<html>[]+</html>\n/"
i have tried []+ but it does not seem to like this?
...
Hi,
I am trying to use the pchart package (over php) to build (and directly display) graphs/charts.
At this time, I am just trying to run their provided example (Example1.php), where I just have replaced the final:
$Test->Render("example1.png");
by
$Test->Stroke();
But When I do this, I get:" The image cannot be displayed because...
I am trying to add a language to the url with following syntax:
http://www.example.com/en/site/page/view/about
What I have so far works with short urls like:
http://www.example.com/en/site/contact
but not with long once as in my first example
Here is what I have so far:
/config/main.php
'urlManager'=>array(
'class'=>'appl...
Hi, in a recent project I've come really need the lib tre matching library.
However the project is in php, and there are no php bindings for the library.
I've tried to google how to create an interface for c libs, but all I found was the dl function which seams to load only php extensions.
What am I missing?
...
Excuse me if this has indeed been asked before, I couldn't see anything that fitted my needs out of the dozens of similar titled posts out there ;)
I'm trying to merge 2 php arrays which aren't of the same length, and merge them on a value that exists from identical key => values within both arrays.
My first query produces an array fro...
Hello,
what is PHP's safest encrypt/decrypt method, in use with MySQL - to store let's say passwords?
Of course, not for portal purposes - hashing is the safest option there.
I want to do little password (domain/mysql/ftp...) storage for our whole team online, so we could log in and check to passwords, but I don't want really to endan...
I am currently developing an application which will require multiple different development languages. I want to use PHP as the final piece of the puzzle - the physical web page construction. This PHP web app will need to contact multiple web services which could be coded in anything from Java to Erlang to Python. Each of these web servic...
How can we separate Logic from presentation without using any template engine (traditional php-not OOP)
Thank in advance
...
Do I actually have to return $postID in each case, in the code below?
This is code required for capturing the values of custom fields I've added to the WP post and page editor. Got the idea from here: http://apartmentonesix.com/2009/03/creating-user-friendly-custom-fields-by-modifying-the-post-page/
add_action('save_post', 'custom_add_...
I've got an HTML file with special characters such as:
AT&T™ Official Site
When I use file_get_contents() on the file and echo the contents, I get something like this:
AT&T\u00e2\u0084\u00a2 Official Site
How can I convert the latter to the former?
This is all I'm running:
echo file_get_contents("http://www.google.com/uds...
$ch = curl_init("url");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "test");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$outputArray = curl_exec($ch);
Then $outputArray will contain:
Array
(
[0] => Array
(
[r1] ...
I asked this question yesterday, and at the time it was just what I needed, but while working with some live data I discovered that is wasn't quite doing what I expected. http://stackoverflow.com/questions/2571232/parse-html-with-phps-html-domdocument
It gets the data from the HTML page, but then it also strips out all the HTML tags ins...
Hey!
I have to rewrite a form in a CakePHP application. The form searches a list of car sale ads and is pretty complex (~10 fields: model, manufacturer, fuel type etc.). Currently, the form is sent via POST and is working quite well. The problem is I need to create bookmarkable URLs from the search queries and I was wondering what was t...
Hi,
Question related to PHP memory-handling from someone not yet very experienced in PHP:
If I set a PHP session variable of a particular name, and then set a session variable of the exact same name elsewhere (during the same session), is the original variable over-written, or does junk accumulate in the session?
In other words, shoul...
I don't want to give an initial value. I want to set these later using the set method
class Duck {
var int id;
var set = Array();
}
Any idea how to declare without getting error?
...
Hi,
I'm going to start a new project that's building web apps from scratch.
I have been thinking about using symfony framework for this project.
Should I start using symfony 2.0 or stick with 1.4 ? I estimate this project will be finish on May or June this year but I realise that symfony 2.0 still on development.
Which one I should ...
i am trying to write a php upload script to upload files to different folders. My code works for direct path (something like 'path/to/directory') but not for dynamic path taken from runtime.
$directory_self = dirname($_SERVER['PHP_SELF']);
$folder = $_POST['folder_name']; //final folder
$toupload = $_SERVER['DOCUMENT_ROOT'] . $directory...
‹�����혱jÃ0†w=Å=AÜ ÂЃ)ÅKGÅ:¢En%¹©ß¾²Ý 7xèpußøãŸ~ÝöÇ®Ömót¨•îŸû®©îao‚½‘Í:ºR†æk@´huõÃ(];z:¼•Íö¾þ{¥•‚¾ímwi£_±Ä1)–ÄÇ�‡‘,‰%Ž#YKF²Ä²Ä8ŒèKF²$–88ŒdI,qpÉ’Xâà0’%±Ä1Àaþe–TïÆOŒ@ 2^ßÇh"ù¦`Î!뜄yœ"Dü˜0e°Ó:ËË>e„ñʈfp.à(U®<œv¿ì;xñhRY3˜‹¡�ÞdŒ;Uºõ×R°WkÑ^Z÷¥¯Wß.Ò¤·��
That's exactly what shows up instead of my website in the web browser. Though on local...