PHP is a widely-used, general-purpose scripting language designed specifically for web development, though it has since been extended to other applications too. PHP is the most popular language for web development, powering over 20 million websites.
14
votes
1answer
3k views
New self vs. new static
I am trying to convert a PHP 5.3 library to work on PHP 5.2. The main thing standing in my way is the use of late static binding like return new static($options); , if I convert this to return new ...
9
votes
4answers
301 views
What is wrong with PHP5.3?
I came across lots of hosting companies are unwilling to upgrade to PHP5.3. Most of them gave me the reason is that there are lots of bugs in PHP5.3, so they prefer to keep it at version 5.2.
What is ...
7
votes
2answers
145 views
Doctrine 1.2 hydration fails with HYDRATION_RECORD, but works with HYDRATION_ARRAY
I have a code that runs perfectly with Doctrine_Core::HYDRATION_ARRAY, but crashes with Doctrine_Core::HYDRATION_RECORD. The page is loading for about two minutes and shows standard browser error ...
4
votes
5answers
4k views
What can use for DateTime::diff() for PHP 5.2?
A quick question.
Is there any function equivalent to DateTime::diff() in php 5.2?
My local server is php 5.3 and using DateTime::diff(). then I found that my live site uses php 5.2 and gives an ...
3
votes
4answers
106 views
PHP help with error
I am working on a Zend project and it has been well over 12 months since I touched Zend, I am getting an error on one of my functions, and I cannot work out why, I think it may be down to the site ...
3
votes
1answer
174 views
Packaging PHPUnit tests as a PHAR archive?
Is it possible to package PHPUnit tests as a PHAR archive, and run them using phpunit?
I've created a .phar with the follow script:
<?php
$cPhar = new Phar('mytests-archive.phar', 0);
...
2
votes
1answer
59 views
fwrite function undefined [solved…but…]
I am using PHP Version 5.2.17 and noticing some bizarre behavior in my PHP script while attempting to create and write to a CSV file. The following code results in a fatal error :
PHP Fatal error: ...
2
votes
3answers
57 views
Making a PHP closure function safe for PHP 5.2
The following function works in PHP > 5.3 but errors out in older versions. How can I modify this to make it 5.2 safe?
function _iniloader_get_dirs($dir) {
$dirs = array_filter(scandir($dir), ...
2
votes
1answer
67 views
PHP 5.2.x: $_POST is empty when any field has value of “drop anywords from anywords”?
Very weird bug!
When at least 1 form field has value of "zeroOrMoreWords drop oneOrMoreWords from oneOrMoreWords", the $_POST comes empty! Just to confirm to myself I'm not crazy, I tried the same ...
2
votes
1answer
77 views
PHP 5.2 Unexplainable - File stops executing properly
I have multiple virtual hosts running PHP 5.2.17. Periodically a script will seemingly randomly stop working properly. The script will silently fail and the browser will attempt to download the file. ...
2
votes
3answers
104 views
Can I make this xpath search faster?
xml:
<root>
<a auto='1'>
<b>
<c auto="1">
<d auto="1"></d>
</c>
...
2
votes
3answers
672 views
How to Run PHP on IIS7.5 Express?
I have Win XP SP3 and have installed IIS7.5 Express and want to run PHP on it.
I am able to run simple HTML code on the server, I am able to start and stop the server by running iisservices.exe, but ...
2
votes
2answers
423 views
PHP date_parse_from_format( ) alternative in PHP 5.2
Since date_parse_from_format( ) is available only in PHP 5.3, I need to write a function that mimics its behaviour in PHP 5.2.
Is it possible to write this function for PHP 5.2 and make it work ...
2
votes
4answers
278 views
Emulate goto functionality in PHP 5.2 - maybe better approach?
I have written a script using my local PHP 5.3 installation making use of the goto statement. Uploading it to my webserver, I had to discover that my hoster still has PHP 5.2 installed and therefore ...
2
votes
2answers
323 views
SoapClient error fallback in PHP
In PHP, if you try to instantiate a new SoapClient, and the WSDL is not accessible (server down or whatever), a PHP fatal error is thrown:
Fatal error: SOAP-ERROR: Parsing WSDL:
Couldn't load ...
2
votes
2answers
332 views
Which PHP ORM for CodeIgniter with PHP 5.2
Hey,
normally im developing with doctrine 2.0 and CodeIgniter with PHP 5.3x
Now i hav to work with php 5.2 for one site and im asking which orm should i take because Doctrine2 needs PHP 5.3x
Should i ...
2
votes
6answers
408 views
How to make first letter of a word capital?
Hello guys
I have a word default and I want a php function to make only first letter capital. Can we do that. Please help me out as I am very new to php coding.
Thanks in advance!
2
votes
2answers
350 views
PHP Socket Server Memory Leak
I have checked the memory whilst sending and receiving data over one connection, and I appear to be correctly clearing variables, as the memory returns to its previous value.
But for some reason if I ...
2
votes
1answer
672 views
php dateTime::createFromFormat in 5.2?
I have been developing on php 5.3.
however our production server is 5.2.6.
I have been using
$schedule = '31/03/2011 01:22 pm'; // example input
if (empty($schedule))
$schedule = date('Y-m-d ...
2
votes
2answers
2k views
Running PHP 5.1 and 5.2 on debian squeeze
I know that Debian Squeeze won't let me compile a PHP version (prior to 5.3.0).
But I need them for migrating some tools: Joomla (1.0.10) and SugarCRM (4.2.1b).
Actually, Joomla 1.0.10 can run on ...
2
votes
3answers
150 views
Why static in PHP 5 … Example
can someone explain me the difference between those 2 classes? Why to use satic calls instead of an new object?
class User
{
protected $users = array();
/**
* Create new user
*
* @param ...
2
votes
2answers
83 views
What's the best way to handle dates and times in PHP prior to 5.3?
Well, found out that I built a relatively large program built on top of DateTime, only to find most of what I used there got added in PHP 5.3. The server I have to deploy to does not run 5.3. (And ...
2
votes
1answer
105 views
Is there a Symfony callback at the termination of a session?
I have an application that is authenticating against an external server in a filter. In that filter, I'm trying to set a couple of session attributes on the user by using Symfony's setAttribute() ...
2
votes
1answer
596 views
Can Symfony simply reload a page request?
I have an app that receives a request from another app. It detects a value on the query string, checks that value against a cached value and, if they don't match, it needs to clear its cache and ...
1
vote
1answer
27 views
Forward a function call to another function without knowing the other function's arguments
In PHP 5.3, we can do it in this way.
function func() {
return call_user_func_array('another_func', func_get_args());
}
function another_func($x, $y) { return $x + $y; }
echo func(1, 2); // ...
1
vote
2answers
175 views
Preventing DOMDocument::loadHTML() from converting entities
I have a string value that I'm trying to extract list items for. I'd like to extract the text and any subnodes, however, DOMDocument is converting the entities to the character, instead of leaving in ...
1
vote
3answers
76 views
new $className(); php version support
As far as I know, class instantiation using a variable new $className(); is supported in 5.3 for sure, however I'm not sure about 5.2 version and I can't check if this works OK on 5.2.
Can anyone ...
1
vote
1answer
113 views
Is there a way to have a navigation entry with no link in zend navigation?
I'm sure my question is pretty straight forward, and I've been looking for an answer to this, but I can't seem to make it work. I want to do something like this:
<?xml version="1.0" ...
1
vote
1answer
56 views
PDO supports PHP 5.2 [closed]
I read that PDO is not supported well (buggy) in php 5.2. I would like to how buggy is PDO in PHP 5.2?
1
vote
1answer
208 views
PHP 5.3.0 NumberFormatter replacament
In PHP 5.3.0+ (on my local server) I have intl library installed. I use NumberFormatter class. I need it to convert floats to various formats (percentage, decimal, currency, etc.)
But on my real ...
1
vote
3answers
151 views
Assigning return value of new by reference is deprecated in PHP 5.3
My site has a deprecated error at this line:
$obj =& new $class($table,$primkeyArr,$this);
it is because of &. It gives this error:
Deprecated: Assigning the return value of new by ...
1
vote
3answers
127 views
Does PHP 5.2 still receive security patches?
My server admin tells me PHP 5.2 has been EOLed and so receives no bug fixes. This is obviously the case. He also tells me that 5.2 receives no security patches, which suggests we should upgrade to ...
1
vote
4answers
476 views
Namespaces in php 5.2
I've done little web using namespaces. I have it in my computer and i'm about to moving it to free hosting that uses php 5.2. Syntax highlighter for php 5.2 interprets them as errors.
Are namespaces ...
1
vote
2answers
165 views
Calling static method of class by name
This is somewhat the second part to this question.
In my project, I have the following interface:
interface ISoapInterface {
public static function registerSoapTypes( wsdl &$wsdl );
public ...
1
vote
3answers
143 views
Sort Function in 'usort' being “evaled” in PHP? Fatal error: cannot redeclare function?
Recently stumbled upon this neat little bug or 'feature' in PHP:
function myCmpFunc($a,$b) {
function inner($p) {
// do something
}
$inner_a = inner($a);
$inner_b = ...
1
vote
1answer
192 views
PHP DateTime class just like v5.3 for PHP 5.2
I've found a few problems in applications I've been doing where methods like DateTime::diff would be of much assistance, but my host with PHP 5.2 does not support DateTime::diff or any other from 5.3.
...
1
vote
1answer
26 views
array question filter
Array(
[MainArray]=>Array
(
[myarray] => Array
(
[0] => Array
(
[id] => 1234
[url] => google.com
...
1
vote
1answer
69 views
Calculating how many 'Midnights' is one date past another in PHP?
I have a start/end times for a calculation I'm trying to do and am having a problem seeing if the end time is before 12AM the day after the start time. Also, I need to calculate how many days past the ...
1
vote
3answers
344 views
Creating DateTime from timestamp in PHP < 5.3
How do you create a DateTime from timestamp in versions less than < 5.3?
In 5.3 it would be:
$date = DateTime::createFromFormat('U', $timeStamp);
The DateTime constructor wants a string, but ...
1
vote
2answers
252 views
Downgrading PHP version on Drupal Test Server
I have several live Drupal sites running on an Ubuntu server (10.04), Apache 2.2 with PHP 5.2.3-1. I recently started the work of setting up a test server that would be as close as possible to the ...
1
vote
2answers
611 views
Can't call static method from class as variable name?
I'm using php 5.2.6. I have a strategy pattern, and the strategies have a static method. In the class that actually implements one of the strategies, it gets the name of the strategy class to ...
1
vote
2answers
456 views
How to calculate person's age in months+days in PHP 5.2?
I have asked this question before and accepted the answer but now I found that the php version on our server is 5.2 and DateTime::diff() is not working on that.
I want to calculate person's age in ...
1
vote
3answers
1k views
alternative to json_decode before PHP 5.2
Is there a simple alternative to using json_decode function in php versions prior to 5.2? I am feeling lazy at this time of night and can't be bothered to update php yet.
Cheers.
1
vote
1answer
1k views
Xdebug with PHP 5.2 on 64-bit Windows 7?
I would like to install Xdebug (http://xdebug.org/) on my 64 bit Windows 7 machine to debug Drupal code running on PHP 5.2. The Xdebug download page does not provide a download for a 64 bit version ...
1
vote
1answer
488 views
PHP: variable name as class instance
Hey guys,
Im having a problem with using a variable as the class name when calling a static function within the class. My code is as follows:
class test {
static function getInstance() {
...
0
votes
2answers
67 views
php 5.3 date diff equivalent for PHP <= 5.2 on own function
I am using a function (found it on the web) that calculates the time that has passed until now. I am passing two parameters: post date and current date. it will return years, months, days, hours, ...
0
votes
1answer
37 views
Unix time in millisecond to d-m-Y
I'm pulling a unix time in milliseconds from an xml document but can't convert it to a readable date (d-m-Y) in php 5.2.17.
I've used http://www.epochconverter.com/ which converts it correctly
from ...
0
votes
0answers
32 views
Cakephp and ezpdf, create blank file
I use cakephp (2.05) and EZPDF(http://www.ros.co.nz/pdf/). On the development server (ubuntu 11.04 - PHP Version 5.3.5-1ubuntu7.4) and the creation of pdf files works perfect.
On the production server ...
0
votes
1answer
56 views
How can i change the file extension from .xlsx to .xls using php [closed]
How can i change the file extension from .xlsx to .xls using php. i have a xlsx file and i have to read the data from that file. I am using oleread to read xls file.
This works correctly with file ...
0
votes
2answers
51 views
php exceptions - throw/catch not working across loops
This should so work. Please tell me I'm doing something wrong.
Here's the code:
<?php
try {
echo "start";
throw new Exception("test");
for ($index=0; $index < 1; $index++) {
echo ...