The tag has no wiki summary.

learn more… | top users | synonyms

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 ?
32
votes
4answers
5k views

Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)

ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's ...
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()); ...
6
votes
2answers
3k views

Strict Violation using this keyword and revealing module pattern

Having trouble getting the following to pass jslint/jshint /*jshint strict: true */ var myModule = (function() { "use strict"; var privVar = true, pubVar = false; function ...
67
votes
3answers
148k views

How do I break out of a loop in Perl?

I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying: Bareword "break" not allowed while "strict subs" in use at ...
3
votes
1answer
712 views

How do I average column values from a tab-separated data file, ignoring a header row and the left column?

First and foremost I apologise if this, or a similar query, has been posted before but I did follow the steps and looked here and beyond and that is why I'm resorting to asking a question, something I ...
12
votes
1answer
3k views

Why is JSHINT complaining that this is a strict violation?

I think this may be a duplicate of Strict Violation using this keyword and revealing module pattern I have this code: function gotoPage(s){ if(s<=this.d&&s>0){this.g=s; ...
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 ...
3
votes
2answers
2k views

Disable a built-in function in javascript (alert)

Simple: I want to disable/overwrite alert(). Can I do this? More importantly, is it right to do this? What about strict mode?
3
votes
1answer
128 views

Function executes faster without STRICT modifier?

I wonder about a slump in performance when a simple SQL function is declared STRICT. I stumbled upon this phenomenon while answering a question here. To demonstrate the effect I create two variants ...
2
votes
2answers
507 views

Using Dumper not triggering a failure

when running code like this: use strict; print Dumper "something"; nothing is printed out and no error occurs during compile and runtime. Why does this happen? Why doesn't strict prevent this code ...
0
votes
1answer
1k views

Why does my simple strict XHTML file give errors when I include jquery?

I'm trying to make a simple strict HTML file that includes jquery: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
11
votes
2answers
2k views

In ECMAScript5, what's the scope of “use strict”?

What scope does the strict mode pragma have in ECMAScript5? "use strict"; I'd like to do this (mainly because JSLint doesn't complain about it): "use strict"; (function () { // my stuff here... ...
6
votes
2answers
233 views

Haskell - strict vs non-strict with foldl

I have a question concerning the definition of strict vs non-strict. The Haskell wiki-book for Laziness (http://en.wikibooks.org/wiki/Haskell/Laziness), under the section "Black-box strictness ...
5
votes
5answers
979 views

Perl: Why is it slower to declare (my) variables inside a loop?

What's the difference, from the interpreter's POV, between the following the following programs: #!/usr/bin/perl -w use strict; for (1..10000000) { my $jimmy = $_**2; } and #!/usr/bin/perl ...
3
votes
1answer
632 views

How to enable ECMAScript “use strict” globally?

I have a project with literally hundreds of JavaScript source files. I am wondering what is the best way to enable the strict mode for the project? I understand the consequences of this action and I ...
3
votes
5answers
339 views

Why does defined sdf return true in this Perl example?

I tried this example in Perl. Can someone explain why is it true? if (defined sdf) { print "true"; } It prints true. sdf could be any name. In addition, if there is sdf function defined and ...
2
votes
1answer
346 views

Inconsistent behaviour of “this” in JavaScript strict mode

Update For clarity: @FelixKing: Yes, I expected this to still be undefined when calling window.foo(), and here's why: since, in JavaScript: function foo() { console.log('I am a function'); } ...
2
votes
4answers
164 views

jQuery callback - strict violation

I get the basic idea about this not being in a method when in strict mode outlined here, but it gets a bit erudite, to be honest. So, in more prosaic terms: I have a handler like so: ...
1
vote
2answers
110 views

How to force strict evaluation of a sequence of ByteString

I have the following Haskell type definition: import Data.Sequence(Seq, length) import Data.ByteString.UTF8(ByteString) type StringSeq = Seq ByteString I have expressions of type StringSeq for ...
1
vote
2answers
83 views

Does this union break strict aliasing? What about floating point registers

union { Uint32 Integer; Float32 Real; } Field; I have to use that union for a little IEEE trick, does that break strict aliasing? GCC is not throwing any warning(tried with GCC 4.5 and ...
1
vote
3answers
2k views

Sql Server strict convert from varchar to datetime

I'm converting varchar to datetime in Sql Server 2005. Can I force Sql Server to fail if provided varchar has unexpected format? Example: select convert(datetime, '01-2010-02', 103) Expected ...
1
vote
1answer
1k views

Summary of ActionScript 3 strict mode

Where can I get a summary of differences between ActionScript 3.0 strict and standard mode? In other words, what are the things I can do in standard mode but not in strict mode?
0
votes
2answers
229 views

How is JavaScript's strict mode implemented

Update: Perhaps the way the function is called is to blame, so here's to it: 2 JS files  Main.js: self invoking (non-strict) function that adds an event listener for the '(on)load' ...