Tagged Questions
2
votes
4answers
42 views
PHP - How to avoid Parse errors on older servers when using new functions
When I use an anonymous function ( but see also note below ) like :
$f = function() use ($out) {
echo $out;
};
It produces an parse error on servers where PHP is older ...
0
votes
0answers
20 views
php - GD extention and version number with phpversion()
Trying to get a bit of server info for debug I just use :
$ext = get_loaded_extensions();
foreach($ext as $ex){
echo '<br> Enabled : <b>' .$ex .'</b>';
}
Result :
[.....]
...
0
votes
1answer
41 views
How to tell MAMP which version of PHP to use?
I've installed PECL for PHP on MAMP. Unfortunately, it is using php 5.3.6 which is different form the most recent version of PHP(which is 5.4.10 today). When looking a phpinfo, I see that it is not ...
0
votes
2answers
97 views
Php version on windows command line [duplicate]
I just tried to know version of my PHP from windows command typing,
C:\> php -v
But it is not working. It says php is not recognized as internal or external command.
0
votes
1answer
59 views
Show git versions in php explorer
I'm using Eclipse 4.3 Kepler and I have Egit installed.
I want to display current project versions in my php explore but for now I can only see them in the Git Repositories view.
How to display ...
0
votes
1answer
20 views
attribute value as class name giving error
I have created delete.php page that will accept class name and id as following:
if(isset($_GET['id']) && is_numeric(trim($_GET['id'])) ) {
$id = $_GET['id'];
}
else{
...
0
votes
2answers
82 views
Random versioning number with images to force cache
I few random php scripts with various parts of HTML code in them, stylesheets and images. But lately I'm having a problem with cache.
I add a random versioning number to stylesheet to force it to be ...
0
votes
1answer
65 views
PHP filemtime of many files
I am trying to determine the filetime of many different files as I'd like to get the version of these files.
Is it a good opportunity to add (+) the filemtimes of the files? Doing this gives me a very ...
6
votes
1answer
85 views
How to detect current IIS version with PHP?
My approach now is …
if ( preg_match( '~IIS/(\d+\.\d+)~', $_SERVER['SERVER_SOFTWARE'], $matches ) )
$version = $matches[1];
… but I have no experience with IIS, and after searching for a while ...
2
votes
3answers
272 views
Which Joomla version below 2 and near to 1.5. supports PHP 5.4?
My web hosting provider said that they are changing to php 5.4 from 5.2.17 ,and i try to run my site in local with the php 5.4, I got full of issuses
like this
Strict Standards: Non-static ...
0
votes
0answers
68 views
PHP version change from 5.2 doesn't display the page correctly, version 5.3 causes 500 error
My issue is that I have a website, that I'm developing, running just fine on my computer, accessing it via localhost on 5.3.2 shows the site, everything's running smoothly, but then I upload the files ...
1
vote
2answers
70 views
how to find the version numbers of built in modules in php from the CLI
Basically i am new to php, and i just installed php on my machine.
so we can know entire information of the php configuration by creating a php file and
writing the below code in it
<?php
...
0
votes
1answer
347 views
PHP Soap Client - sending the wrong headers “soapenv:VersionMismatch”
I've come across a problem that I cannot figure out how to fix. I've created a soap client in php that is supposed to do an xml request to a web service - the service is working through SoapUI, but ...
1
vote
5answers
89 views
PHP code version dependency
In each and every version of php, some new features are added and some features are stopped.
Example:
<?php
$hex = hex2bin("6578616d706c65206865782064617461");
var_dump($hex);
?>
will need ...
0
votes
1answer
140 views
MAMP PHP vs Apple's installed version
I would like to use MAMP's version of PHP for my local PHP testing and development. I understand that Macs come with a version of PHP installed. I have installed MAMP and everything seems to be going ...
2
votes
2answers
127 views
Tool or approach for PHP product migration from PHP 5.2 to PHP 5.4
Existing product developed in core PHP is built in PHP 5.2 and now we want to migrate the product to PHP 5.4.
CodeSniffer can detect compatibility for version and generate report with warnings and ...
0
votes
0answers
137 views
html2pdf library shows php version issue
I am using html2pdf library for generating PDF from HTML. It works fine in wamp2.0 in which PHP version is 5.2.6. But I found an issue and a lot of errors in PHP version 5.4.3
that look like
...
-2
votes
1answer
134 views
what means by PHP 5.5.0 drop dupport for Windows XP and 2003? [closed]
PHP 5.5.0 Alpha1 released on 15 Nov. and I have seen one line which make me bother and that is
We also dropped support for Windows XP and 2003.
I read full list of changes NEWS but doesn't find ...
0
votes
1answer
185 views
symfony doesn't see upgrade [closed]
I don't get it... after upgrading php to 5.4 I started getting a warning
Warning: ob_start(): function '' not found or invalid function name in ...
0
votes
1answer
53 views
Advice on lack of Zend Framework support for newer versions PHPUnit [closed]
I have just installed the latest PHPUnit version to sit with my ZendSever, but get a large number of errors.
Notably:
Declaration of Zend_Test_PHPUnit_Constraint_DomQuery::evaluate()
should be ...
0
votes
0answers
98 views
php 5.2.x json encode alternate for JSON_HEX_QUOT|JSON_HEX_APOS
My server's php version is 5.2.17 and I am not able to run
json_encode with JSON_HEX_QUOT|JSON_HEX_APOS
My contents are like 's (apostrophe s)
[{"key":"3085","value":"A&B's Partytime Rentals ...
0
votes
2answers
38 views
Is there an alternative for compiler directives in PHP in order to use app version?
Here is the thing, I have a running application and my client has been asking me to add features over time. Now he hasn't implemented all the features that I've developed, but he wants to implement ...
1
vote
3answers
138 views
PHP 5.2.17; html_entity_decode - Character decoding issue
So guys im facing a terrible problem that is taking my pacience to solve.
I made a two functions, one to encode data colleted from a wysiwyg editor to send it to a mysql database (the table charset ...
0
votes
4answers
627 views
how to change php version in htaccess in server
I'm using php version 5.3 in my local. In server we are having php 4.8. Our server is shared server. so i want to change php version in server via htaccess file. Is it possible to do it? If yes how to ...
0
votes
1answer
66 views
PHP installing \ building [closed]
I've followed this guide: http://www.phamviet.net/2012/06/03/centos-6-2-compile-php-5-4-2-from-source/
It all works as it should, but when I'm done and I type 'service httpd restart' following by ...
1
vote
2answers
475 views
phpinfo and php -v show different version on lion
I try to upgrade my php from 5.3.13 to 5.4.5
I've manually download source codes of php 5.4.5 and ./configure then sudo make install it.
after that, I run
php -v
it shows 5.4.5, while I run
...
1
vote
3answers
88 views
which package of tinyMCE is to be used?
I want to use tinyMCE for adding content to front end. I got a link for downloading latest version of tinyMCE
But I am confused to choose among TinyMCE 3.5.5 development package and TinyMCE 3.5.5.
...
1
vote
3answers
56 views
Removing “.0” from version numbers
I am developing a runtime intelligence software program. It collects the version number of programs so you can then see the statistics for each version number. The problem I am having with this is ...
1
vote
1answer
167 views
Server won't create instance of DOMDocument
I'm quite new to php, and I can't get this to work, and I don't understand why I can't..
I am using NetBeans and XAMPP locally, but I have a server "slot" at school where I upload my webpages for ...
4
votes
1answer
180 views
How to detect Flash version with PHP or javascript?
I'd like to store the flashversion of users of a website in a database, so when they report problems with the website I can easily see which flash version they use. Is there a way to detect it with ...
0
votes
2answers
59 views
Best way to detect installed version in a PHP web application
We have a custom PHP/MySQL web application that gets updated and copied (using SFTP) to multiple servers regularly.
For some of those updates, database or filesystem changes are needed. Typically ...
0
votes
0answers
218 views
Update php version on amazon ec2 ubuntu from 5.3.2 to 5.3.x with chef recipe
the current php version on the box is
PHP 5.3.2-1ubuntu4.17 with Suhosin-Patch (cli) (built: Jun 19 2012 01:35:33)
I changed the default.rb in the chef/cookbooks/php/attributes the following way
...
1
vote
1answer
322 views
Extending my ORDER BY in Doctrine2
I have a table that holds version numbers and I want to read them out naturally sorted.
This is no problem with raw SQL:
SELECT * FROM versions ORDER BY REPLACE(version, '.', '')+0 DESC
But if I ...
0
votes
2answers
110 views
mobile version of a website
I am making a mobile version of my website but I am facing a problem. I googled a lot but I could not find anything.
When I open the mobile version with opera mobile, the mobile version is as big as ...
0
votes
0answers
227 views
Changing PHP version on Wamp? Trying to load Zendguard or Ioncube
I have been trying for hours to fix this issue, I recently purchased IP.Nexus, an add-on to the Invision Power Board forum software(it is a shop front for the forum). There are two versions I may ...
0
votes
2answers
1k views
Hide Wordpress widgets on a mobile device
I'm having trouble with ads - I've placed them in widgets and now the mobile version of the site sucks - the ads are too big for a phone and ruin the theme. What I came up with right now is this:
...
1
vote
1answer
25 views
Which version of php add invocation of method returned by a function
In this code:
class Foo {
private $foo;
public function Foo($foo) {
$this->foo = $foo;
}
public function getFoo() {
return $this->foo;
}
}
$a = new Foo(new Foo('bar'));
echo ...
2
votes
2answers
417 views
How to get version of PCRE (bundled with PHP) from code?
Is there any way to get version (and date of release) of PCRE bundled with PHP from PHP code and store it into variable?
I can found it using phpinfo() but can't find any other way to get that value ...
1
vote
1answer
591 views
How to upgrade version of codeigniter framework?
My current project has version 1.6.3 of codeigniter framework. Now there is new release of 2.1.0 version of codeigniter. There are many new libraries and helpers included in new version. So I want to ...
1
vote
1answer
163 views
Eclipse - PHP Project's Version Number
This question is about Eclipse and the PHP plugin.
What I'm looking for is a simple thing that I can't find and it bother me a lot!
I try to get a Version Number of the current project I edit.
I ...
1
vote
3answers
178 views
How to sort Versioning info
What's the right way, to handle versioning indicators like 2.4 or 2.4.0.9 etc. to get the ability of sorting versions.
PHP says, that 1.3.4 is not a valid integer, but also a non-valid number.
...
2
votes
2answers
183 views
Tool to determine PHP version compliance
Is there any tool that can analyze PHP code and tell if it will work or not with certain PHP versions? For example if I have code developed using PHP5.3 and want a fairly quick way to tell if it ...
0
votes
1answer
60 views
PHP version that allows property assignment BEYOND straight literals? [closed]
I am new to PHP, but very experienced with programming. Looking at the PHP web site page on properties: http://www.php.net/manual/en/language.oop5.properties.php I saw this example.
<?php
class ...
5
votes
2answers
235 views
PHP version adoption stats?
Are there any statistics as to what percentage of servers are running PHP version 5.3+?
2013-02-18: 34% per WordPress | 35% per w3techs | Drupal 8 requires 5.3
3
votes
2answers
112 views
Correct spelling of PHP 5.3? [closed]
How do I write PHP and a version correctly? Is it with space separated or not?
PHP5.3
or
PHP 5.3
If it is spelled with space, why do we say PHP5 then?
1
vote
3answers
198 views
Versioning of PHP classes [duplicate]
Possible Duplicate:
Loading multiple versions of the same class
What is the best way to setup different versions of PHP classes and toggle them based on a configuration value?
Here's my ...
0
votes
1answer
129 views
What version of PHP was ReflectionClass introduced in?
What version of PHP was ReflectionClass introduced in?
for example:
$objMetaData = new ReflectionClass('Direction');
$arrValidDirections = $objMetaData->getConstants();
0
votes
2answers
251 views
PHP which version supports simplexml cdata
From which PHP 5 version does simplexml_load_file support CDATA?
$xml = @simplexml_load_file($url, NULL, LIBXML_NOCDATA);
Thanks!!
1
vote
3answers
844 views
Is there a way to check the php version number just using files on the hard drive?
I have a hard drive that used to be in a server, now I'm trying to find out what exact version of php was installed on the server. I know it was version 4 because the folder it's in is /etc/php4, but ...
0
votes
1answer
32 views
PHP Changelog code profiling
Does anyone know where there is a nice place to view the changelog for PHP? Functions specifically? I've been trying to read this and it's proving confusing, http://php.net/ChangeLog-5.php
I need to ...
