Search Results

3
votes

UTF-8 all the way through…

I'd like to add one thing to chazomaticus' excellent answer: Don't forget the META tag either (like …
1
vote

Decode gzipped web page retrieved via cURL in PHP

I assume that would be gzdecode($data)... Hmmm, but it looks like that function doesn't actually exist in any release …
1
vote

How to get &nbsp to behave properly using HTML Purifier?

The non-breaking space isn't being saved in your database as one weird foreign character, it's being saved as two characters. The Unicode non-breaking space character is encoded in UTF-8 a …
4
votes

Why does the browser not cache a 301 within an AJAX-request?

Most browsers don't cache redirects. Steve Souders tested this as part of his UA Profiler browser performance test. He …
4
votes

Zend Form: How do I make it bend to my will?

Matthew Weier O'Phinney has started a series of blog posts about Zend_Form decorators: …
1
vote

Zend_db & Zend_paginator - Not having a fun time

What does this have to do with Zend_Paginator? Ah, do you have the query and you don't know how to make a paginator with it, or is the paginator not working with this query? The only thing …
1
vote

How do I remove accents from characters in a PHP string?

I can't reproduce your problem. I get the expected result. How exactly are you using mb_detect_en …
1
vote

Check the language of string based on glyphs in PHP

This should do it: preg_match("/\p{Arabic}/u", $item['item_title']) You could make that regular expression a bit more sophisticated if you want to, but I don't thi …
0
votes

limiting array results returned

I'm not sure if Jonathan's answer is really the best way to do this. First of all, …
5
votes

echoing multiple arguments when output_buffering is on

Be sure to read the PHP team's rebuttal of …
1
vote

How to support “AddType x-mapp-php5 .php” on my development machine

You could try the <IfModule> Apache directive to distinguish your development machine from th …
1
vote

Cake PHP plugin/img/ diectory throws missing method instead of 404

Cake uses an .htaccess file to rewrite the original pretty URLs into something Cake can use, like …
1
vote

Google Maps Problem with Zend Framework

The reason you're not seeing any map is because the URL in your appendFile() call is broken. Remove all the semi-colons: http://maps.google.com/maps?file=api&v=2&am …
7
votes

PHP Function to Join Strings?

You can use func_get_args() to make …
0
votes

XML validation against given DTD in PHP

This essentially does what rojoca mentioned in his comment: <?php $xml = <<<END <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE foo SYSTEM "foo.dtd"> <f …

1 2 next
15 30 50 per page