0
votes
2answers
13 views

Strict Standards: Only variables should be passed by reference in array

$name = substr($name, 0, -strlen($ext)) . "_medium." . end(explode('.',$name)); the above code report strick standard warning, the small script as below: function medium($name) { $ext = ...
0
votes
1answer
19 views

MYSQLI_REPORT_STRICT don't throw mysqli_sql_exception ,but MYSQLI_REPORT_ALL does

I had set mysqli_report(MYSQLI_REPORT_STRICT) and try{ //query sth ,error will happend }catch(Exception $e){ print($e->__toString()); } but there is no debug info . but If I set ...
0
votes
2answers
52 views

Strict Standards: Non-static method (joomla and roksprocket)

Strict Standards: Non-static method K2ModelItemlist::getCategoryTree() should not be called statically, assuming $this from incompatible context in ...
0
votes
1answer
28 views

PHP: why is “Strict standards: Declaration of x should be compatible with y” applied to static methods?

The PHP warning, "Strict standards: Declaration of x should be compatible with y" warns you if you write code like: class A { function foo($x) { .. } } class B extends A { function foo() { ...
0
votes
1answer
154 views

Strict Standards: Non-static method

I'm running Ubuntu + PHP 5.4 and got such error: Strict Standards: Non-static method XTemplate::I() should not be called statically, assuming $this from incompatible context in ... on line ...
0
votes
2answers
289 views

Unable to turn off strict standards warnings, XAMMP, PHP 5.4.7

I'm trying to get some third-party PHP software to run on Windows (it runs on Ubuntu). I'm using XAMMP with Apache/2.4.3, PHP/5.4.7 The php.ini file, C:\xampp\php\php.ini, is set to not report ...
0
votes
1answer
75 views

Strict standards warning: Singleton implementation with PHP

I have created a logger as a singleton for my PHP application with Zend framework. Implementation is pretty straight-forward: class Logger { protected static $_logger; private function ...
0
votes
0answers
188 views

Strict Standards: mysqli_next_result() error with mysqli_multi_query

I have tried using multi_query but I keep getting a strict Standards message popping up. $querystring = "INSERT INTO responses VALUES('1', '2', '3', '4'); INSERT INTO responses VALUES('1', '2', '3', ...
3
votes
2answers
137 views

PHP 5.4 code update - Creating default object from empty value warnings in foreach and objects array

I have following code: foreach($foo as $n=>$ia) { foreach($ia as $i=>$v) { $bar[$i]->$n = $v; //here I have 'Creating default object...' warning } } If I add: $bar[$i] = new ...
1
vote
2answers
142 views

PHP Strict Standards: Non-static method Fatal::dbError()

I am troubleshooting an error in PHP and I don't know how to resolve it. I don't have any PHP knowledge. Here is the code: function _act($sql) { if (!$this->_link) { ...
0
votes
0answers
438 views

Static Standards error after updating to php 5.4.9

I am getting following errors after updating php to version 5.4 Strict Standards: Non-static method Debugger::invoke() should not be called statically, assuming $this from incompatible context in ...
0
votes
2answers
535 views

Strict Standards: Only variables should be passed by reference in functions.php

I'm a bit confused by the error I am getting. The error is: Strict Standards: Only variables should be passed by reference in functions.php The line in reference is: $action = array_pop($a ...
-1
votes
3answers
155 views

PHP Strict Standards: Creating default object from empty value

i have this error in my cronjobs report PHP Strict Standards: Creating default object from empty value in /home/admin/domains/DOMAIN.com/public_html/birthdate.php on line 28 Strict Standards: ...
0
votes
1answer
73 views

PHP - E_STRICT: Creating default object from empty value

I see there are about a hundred different questions on here for Creating default object from empty value. None of them really seem to help with my issue. I am assigning a child object of the same ...
5
votes
1answer
87 views

Is PHP execution any faster with strict standards?

I can't believe i'm not able to google anything relevant to this question, but anyway... My logical assumption would be that scripts which obey all the rules that strict standards dictate would ...
2
votes
3answers
86 views

PHP: Is there any benefit to writing strict code?

When I set error_reporting(E_ALL | E_STRICT);, my code produces Undefined variable errors. I can solve them, but I am wondering whether there is any difference in speed or memory usage between writing ...
2
votes
1answer
232 views

Dealing with E_STRICT in Joomla

The line $db =& JFactory::getDBO(); gives me this with E_STRICT Strict Standards: Only variables should be assigned by reference What exactly does this mean? I'm using JFactory just like ...
0
votes
2answers
1k views

Strict Standards: Only variables should be passed by reference - php error

$file_name = $_FILES['profile_image']['name']; $file_ext = end(explode('.', $file_name)); //line 10 $file_ext = strtolower($file_ext); $file_temp = ...
0
votes
4answers
868 views

MAMP php5 strict standards

I am trying to set error_reporting to E_ALL & ~E_STRICT in php.ini of mamp. But this is not getting affected at all. I confirmed that I am editing right file by setting different error_reporting ...
0
votes
1answer
430 views

custom mysqli class has an error with php 5.4?

I just had my web-server upgrade to php 5.4 and am getting errors on my sites that use my database class which extends from the built in mysqli. the error is on the last line of my class and despite ...
1
vote
1answer
954 views

Dokeos warning: Strict Standards

When installing dokeos 2.1 into htdocs, it shows warnings like these: Strict Standards: Declaration of SortableTableFromArray::get_table_data() should be compatible with that of ...
0
votes
3answers
143 views

Strict Comparison in PHP

I need to write a Player class in php that works with a function that I am not allowed to change. I have to write this class in a way that this function will return the maximum value. I can only use ...
1
vote
2answers
345 views

Strict standards: Declaration ::postDispatch()

I want to configure Doctrine 2.2 with zf 1.11. Everything is done, but I dont know what this error is about: Strict standards: Declaration of Sc\Resource\EntityManagerFront::postDispatch() should ...
24
votes
3answers
35k views

Strict Standards: Only variables should be passed by reference

$el = array_shift($instance->find(..)) The above code somehow reports the strict standars warning,but this will not: function get_arr(){ return array(1,2); } $el = array_shift(get_arr()); ...
8
votes
5answers
535 views

php best practices enforcement

I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices. In perl, I try to follow the guidelines in the popular book "Perl Best ...
0
votes
2answers
583 views

Should one use strict comparison in Strings?

I know that for instance, using: if (in_array('...'), array('.', '..', '...') === true) Over: if (in_array('...'), array('.', '..', '...') == true) Can increase performance and avoid some common ...
49
votes
6answers
91k views

PHP 5 disable strict standards error

I need to setup my PHP script at the top to disable error reporting for strict standards. Can anybody help ?
9
votes
4answers
27k views

PHP5: Creating default object from empty value [closed]

I'm getting an error in my PHP code Strict Standards: Creating default object from empty value. The code I'm using is: $u = new User(); $user->id = $obj['user_id']; The error is appearing on the ...