Tagged Questions

For issues relating to development using PHP, version 4.

learn more… | top users | synonyms

19
votes
6answers
2k views

PHP: Is there any particular difference between intval and (int)?

Is there any particular difference between intval and (int)? Example: $product_id = intval($_GET['pid']); $product_id = (int) $_GET['pid']; Is there any particular difference between above two ...
14
votes
6answers
319 views

Your experience Moving PHP 4 to PHP 5

We have to move around 50+ Applications (small / large) to PHP 5.3 (from PHP 4.1). Does some has any experience with such an task? Time needed Tools Best setup for environment (Servers/Test?) Does ...
6
votes
11answers
3k views

Implications of Instantiating Objects with Dynamic Variables in PHP

What are the performance, security, or "other" implications of using the following form to declare a new class instance in PHP <?php $class_name = 'SomeClassName'; $object = new ...
4
votes
2answers
153 views

How do I determine if an array is empty in PHP?

I want to check that an array has no values or that the values in the array are empty. Can someone explain how to do this?
4
votes
3answers
120 views

How can I figure out the number of week days in a month?

I'm having this problem right now: given a month and a year, I'd need to know how many week days it has (that is, the number of days excluding Saturday and Sunday). It seems so simple, and yet I'm ...
4
votes
7answers
255 views

what does this do

$top += $i ? 12 : 0;
4
votes
1answer
5k views

PHP: Loop thru all months in date range?

if I have a start date, say 2009-02-01 and an end date say 2010-01-01. How can I create a loop to go through all the dates (months) in the range? Thanks!!
4
votes
6answers
229 views

Can MYSQL support databases with sizes around 4 GB? Will I have any performance issues?

I am planning to have a database of size more than 12 million records all of them in a single table and no other joins etc, used for search, filtered based on field names of the table, approximately 4 ...
4
votes
2answers
850 views

Using static properties in PHP >= 4.3.0?

Disclaimer: Yes, I am forced to support PHP 4.3.0. I know it's dead. No I can't upgrade it, because I'm dealing with multiple servers some of which I don't have su access. Well, since I can't ...
4
votes
3answers
660 views

Is there a call_user_func() equivalent to create a new class instance?

How can I create a class with a given array of arguments to be sent to the constructor? Something along the lines of: class a { var $args = false; function a() {$this->args = ...
4
votes
15answers
3k views

Multiple return values to indicate success/failure

I'm kind of interested in getting some feedback about this technique I picked up from somewhere. I use this when a function can either succeed or fail, but you'd like to get more information about ...
3
votes
3answers
60 views

Split a string, excluding some characters [closed]

Possible Duplicate: Split string by delimiter, but not if it is escaped I have a string generated form ibm informix database which is separated by pipe | characters and there are some data ...
3
votes
3answers
255 views

encrypt / decrypt file

I have a need to encrypt and decrypt files using php. I need to have other users a preshared key to be able to decrypt the file. The encryption should be at the lease AES 128. Are there any good ...
3
votes
3answers
235 views

How to tell if optional parameter in PHP method/function was set or not?

Assume I have a method/function with the following signature: foo($bar = 0) Inside foo, how do I tell if $bar was set or not? isset will alway return a TRUE since $bar is assigned 0 in the event ...
3
votes
6answers
70 views

compare date trimming

I have a field (nonTimeStampDate) that has date like this 2010-03-15 and I want to check it against another field (timeStampDate) which is 2010-03-15 15:07:45 to see if the date matchs. ...
3
votes
4answers
150 views

why this sql not working?

I have a query public static function TestQuery( $start=0, $limit=0){ $sql = " SELECT count(*) AS total FROM db.table1 JOIN db.table2 ON table1.fieldID = {$fieldID} AND ...
3
votes
2answers
574 views

Becoming Zend Certified Engineer

I have seen Zend certified engineers growing fast with upper hand over others. I am also planning to take this exam. I just wanted to know what areas of programming should I be more focused on when ...
3
votes
3answers
2k views

PHP: get next 13 dates from date?

I am trying to get an array of a date plus the next 13 dates to get a 14 day schedule starting from a given date. here is my function: $time = strtotime($s_row['schedule_start_date']); // 20091030 ...
3
votes
2answers
515 views

Tools to highlight deprecated functions in PHP4 sources?

Is there any magic tools i can use to scan source code that was written for PHP4 to highlight deprecated functions in PHP5? I'm currently running the latest version of PHP on a server and need to port ...
3
votes
1answer
1k views

Best practice for using fopen() or file_get_contents() to retreive web pages

I am looking for some advice on the best way to retrieve information from a web page (my own site) and then search through that information to find a certain text. Keeping in mind that some of the ...
3
votes
1answer
1k views

Best way to implement try catch in php4

What is the closest you can get to a try-catch block in php4? I'm in the middle of a callback during an xmlrpc request and it's required to return a specifically structured array no matter what. I ...
3
votes
3answers
183 views

accessing php arrays with explicit strings as index

I know that it's more performant to use '' delimited strings rather than ""... but I was wondering if there's any performance improvemente doing this $a = array( 'table' => 'myTable', 'order' => ...
2
votes
1answer
202 views

Class Object in PHP session reset during AJAX operation?

I have a simple example of PHP sessions and AJAX, which works when holding an array in session: Request file: <?php session_start(); $_SESSION['data'] = array('foo','bar'); echo ...
2
votes
1answer
92 views

Code not working in PHP 4

I have a PHP script which works fine in PHP 5, but not in PHP 4. I've made a small test case for you to demonstrate (disclaimer: I know that the below code could be written much better, but it's not ...
2
votes
1answer
138 views

anonymous functions (lambdas, closures) in PHP 4

Is there a trick in PHP 4 to implement functions which return functions? I expected that the following code would work: function xxx($a) { return function($b) { print "a=$a, b=$b \n"; } } ...
2
votes
1answer
379 views

Copying file uploaded vai PHP's HTTP Get in PHP 4

I have been working on adding functionality to a site originally written in PHP 4.4.9. It's not in their budget to port the site to PHP5, so don't even suggest it. (Although it needs it badly). The ...
2
votes
1answer
182 views

PHP: How to make “Latest visit” count nicer

I have "Your latest 5 visits" at the home page of the user when he logs on. It works great without any problem. But then i want to change it. I dont know how i should do this, but someway somehow ...
2
votes
2answers
2k views

Failed to validate oauth signature and token

For reasons beyond my control I am using PHP4 to write a twitter client. Requests don't work properly - I am having a tough time seeing what's wrong. Any ideas? I have grabbed the code and banged it ...
2
votes
3answers
336 views

php output with sleep()

I'm trying to run a loop every second for 25 seconds basically. for($i = 0; $i <= 25; $i += 1){ echo $i; sleep(1) } The thing is it doesn't output until it's fully done, so after the ...
2
votes
3answers
163 views

Insert string into other string

is there any function to insert string1 into another string2 if known particular insert place of string2. For example I have HTML code about 2000 chars long. And at 1000 char I want to insert other ...
2
votes
4answers
210 views

Masking a social security number

I have a Social Security number showing up like this: 1234567890 I want to show it like this: ###-##-7890 So, basically, masking the first five digits and entering hyphens. How can I do that? ...
2
votes
6answers
78 views

an better way to do this code

myarray[] = $my[$addintomtarray] //52 elements for ($k=0; $k <= 12; $k++){ echo $myarray[$k].' '; } echo '<br>'; for ($k=13; $k < 26; $k++){ echo $myarray[$k].' '; ...
2
votes
4answers
110 views

Intern working for Indian NGO - Help with PHP 4, advising staff

For the past three months I've been working for an Indian NGO, doing some volunteer work in the field but also trying to improve their website, which needs a ton of work. Recently I've been trying to ...
2
votes
4answers
63 views

Should there be something like 'bytelen' (along with 'strlen')?

In my opinion the 'strlen' function should only return the number of characters in a string. Nothing else. And it does, whether it counts ASCII characters or Unicode characters. A character is a ...
2
votes
6answers
674 views

PHP: Get class name of passed var?

I have a function that gets a class passed to it as a parameter. I would like to get the class name of the passed class as a string. I tried putting this method in the passed class: function ...
2
votes
3answers
522 views

PHP: Inject iframe right after body tag

I would like to place an iframe right below the start of the body tag. This has some issues since the body tag can have various attributes and odd whitespace. My guess is this will will require ...
2
votes
1answer
2k views

Why PHP 4.4.9 throws 'Parse error: syntax error, unexpected T_STATIC'?

I just realized the professor Google is unable to present a specific page where I can find out, when static keyword added to PHP 4. Though following the change log for php 4 I can see that it was ...
2
votes
1answer
69 views

Is it a good idea to internally invoke the constructor in a static method?

Let's say for example I had a localised date class where the normal usage was to create an object. $d = new Date(mktime(), 'MM-DD-YYYY', array('locale' => 'es')); Now, what if I didn't want to ...
2
votes
3answers
131 views

PHP: How to detect if a certain class has constructor?

How do i detect of a certain class has constructor method in it? eg: function __construct() { }
2
votes
5answers
230 views

Official end of support for PHP4?

Is there an official date for when support for PHP4 will end? I keep reading this date and that on various sites and blogs, but can't find anything on the PHP website. Am I overlooking something?
2
votes
3answers
951 views

PHP object class variable

I have built a class in PHP and I must declare a class variable as an object. Everytime I want to declare an empty object I use: $var=new stdClass; But if I use it to declare a class variable as ...
2
votes
2answers
286 views

php 4 to 5 porting question on how to reset a class

Someone wrote the following php4 code which I now am trying to port to php5: the class is Foo (name changed to protect the guilty). In one of the methods, we'll call it save() the class apparently is ...
2
votes
2answers
953 views

SVG to JPEG via PHP4

I am currently struggling with a side project I hope you can help me with. I am trying to convert SVG images to JPEG with PHP4. Originally I tried to interface java with php via the php_java.dll and ...
2
votes
3answers
916 views

MySQL: How many minutes ago was DB updated?

I need to keep a field in a data-base and update it with a time somehow, then later I need to check that time to see if it was over 30 minutes ago or not, and if not, how minutes left until 30? I am ...
2
votes
4answers
2k views

PHP: how to load file from different server as string?

I am trying to load an XML file from a different domain name as a string. All I want is an array of the text within the < title >< /title > tags of the xml file, so I am thinking since I am ...
2
votes
3answers
405 views

Migrating php4/mysql4 to php5/mysql5: expected php issues?

I have a legacy web application php4/mysql4 (MyISAM, db contains some cms, some user data, some calendar application). Now I am going to migrate to a new server with php5/mysql5. What are the typical ...
2
votes
4answers
4k views

How to use nuSOAP for messages with multiple namespaces

I'm trying to access a WebService using nuSOAP (because I'm bound to PHP4 here) that uses more than 1 namespace in a message. Is that possible? An example request message would look like this: ...
2
votes
2answers
380 views

Is there a fork of PHP4?

Has anybody forked PHP4 to continue support for this version? EDIT: This isn't a question about migrating to PHP5.
2
votes
2answers
2k views

PHP4 for Apache 2.2.9 in Ubuntu server 8.10

I recently moved from a windows based development environment to an ubuntu one. I need to have both PHP4 and PHP5 available (PHP4 is a company requirement, so not much I can decide about it). My ...
2
votes
6answers
18k views

PHP4: Send XML over HTTPS/POST via cURL?

I wrote a class/function to send xml over https via PHP4/cURL, just wondering if this is the correct approach, or if there's a better one. Note that PHP5 is not an option at present. /** * Send XML ...

1 2 3 4 5 6