Tagged Questions
0
votes
1answer
24 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
2answers
274 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 ...
3
votes
2answers
135 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 ...
19
votes
3answers
773 views
Does python have a “use strict;” and “use warnings;” like in perl?
I am learning perl and python... at the same time, not my by design but it has to be done.
Question:
In a perl script I use(see below) at the head of my txt.
#!/usr/bin/env perl
use strict;
use ...
1
vote
1answer
944 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 ...
3
votes
3answers
555 views
Splint warning “Statement has no effect” due to function pointer
I'm trying to check a C program with Splint (in strict mode). I annotated the source code with semantic comments to help Splint understand my program. Everything was fine, but I just can't get rid of ...
