Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

Fatal error: Cannot use isset()
Goto page 1, 2  Next
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
ovnn
Smarty Regular


Joined: 14 Apr 2010
Posts: 82
Location: Germany

PostPosted: Thu Jul 21, 2016 1:33 pm    Post subject: Fatal error: Cannot use isset() Reply with quote

The smarty if Block {if isset($smarty.section.listing.index) && isset($liste[$smarty.section.listing.index].inserats_type)}

throws
Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead) in .... on line 164

if i remove the first isset statement, its work fine. With the second and only the first statement it return the error above

With smarty 3.1.19 it works fine with smarty 3.1.29 throws in the error above.

Best regards
ovnn
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Fri Jul 22, 2016 12:38 am    Post subject: Reply with quote

You shouldn't have used it like that in first place.
There's next to no reason to access $smarty variable from template.
What the hell you are trying to do with it?
Back to top
View user's profile Send private message
ovnn
Smarty Regular


Joined: 14 Apr 2010
Posts: 82
Location: Germany

PostPosted: Fri Jul 22, 2016 7:13 am    Post subject: Reply with quote

i check outside of the section "listing" if the Section "listing" was used

if yes the second checks if the array element with the index val exist
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Fri Jul 22, 2016 1:03 pm    Post subject: Reply with quote

I have an urge to insert facepalm.
Assign a flag variable inside your section.
And check for it rather than rely on engine internals, which can change radically between versions.

But if you want a real solution, then rethink your templates from the ground up to never ever need to perform the checks of this kind.
Back to top
View user's profile Send private message
ovnn
Smarty Regular


Joined: 14 Apr 2010
Posts: 82
Location: Germany

PostPosted: Mon Jul 25, 2016 8:28 am    Post subject: Reply with quote

its not really possible to redesign. i write above, i check if section is used this is not right. I check outside the section and the if block whether the section array exist and has one or more indexes. The if Block on my first post, checks again and after that it checks another index. Now i have write it to a extra Var and it works.

The intention on the construct on first post was to use less variables and Save ram.

it was inspired by the smarty doc example
7.76. total property example
{section name=customer loop=$custid step=2}
{$smarty.section.customer.index} id: {$custid[customer]}<br />
{/section}
There are {$smarty.section.customer.total} customers shown above.
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Mon Jul 25, 2016 11:04 am    Post subject: Reply with quote

You want to use whole kilobyte of code to save 8 bytes of RAM on a flag variable, I got it right?
Back to top
View user's profile Send private message
ovnn
Smarty Regular


Joined: 14 Apr 2010
Posts: 82
Location: Germany

PostPosted: Thu Jul 28, 2016 7:58 am    Post subject: Reply with quote

sure, 8 byte for this user and 8 bytes for other user. Its a high traffic page with many simultan page impressions. The smarty template code is not new, is a old code build some years ago.

At Build it works fine without an extra var and i saw no need to not use the $smarty.section.listing.index
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Thu Jul 28, 2016 10:11 am    Post subject: Reply with quote

Now, use profiler and compare your template execution times.
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Thu Sep 15, 2016 10:59 pm    Post subject: Reply with quote

Because of some internal changes some of the $smarty special variables are no longer real variables and their values are obtained by internal function calls. Some of the php function like isset() or empty() can not handle this.
This problem will be addressed in the next release.

However in your example the call of isset($smarty.section.listing.index) is not needed and isset($liste[$smarty.section.listing.index].inserats_type) will do the job.

And it will save execution time LOL.
Back to top
View user's profile Send private message
U.Tews
Administrator


Joined: 22 Nov 2006
Posts: 5068
Location: Hamburg / Germany

PostPosted: Tue Sep 20, 2016 12:23 pm    Post subject: Reply with quote

This is now fixed on github in teh master branch and will latr be included in 3.1.31
Back to top
View user's profile Send private message
eth8505
Smarty Rookie


Joined: 11 May 2006
Posts: 11

PostPosted: Mon Mar 20, 2017 9:38 am    Post subject: Reply with quote

We just update smarty to 3.1.31 (from 3.1.29) and some of our templates broke rather badly due to this change, as the bahaviour of if-statements changes.

We have a list of attributable elements, with has() and get() methods, where the get() method throws an exception if the attribute does not exist.

Code:

{if $a->has('myattr') || empty($a->get('myattr'))}


Up to 3.1.30, the above code worked fine. With the prefixed variable change (https://github.com/smarty-php/smarty/commit/b8acd7ea176bee219f65eed15721dbd23b3c24ed) the code breaks, as the empty() part of the if statement is actually moved out of the if statement and inserted before it.

This goes against all rules of if statement. Is there any way that you could change it back?

Cheers
Jan
Back to top
View user's profile Send private message
Aristophan
Smarty Regular


Joined: 10 Jan 2011
Posts: 96

PostPosted: Mon Mar 20, 2017 11:48 am    Post subject: Reply with quote

What happens if you change
https://github.com/smarty-php/smarty/blob/master/libs/sysplugins/smarty_internal_templatecompilerbase.php#L791

to your needs, eg
Code:
strpos($par, '(') !== false && false !== strpos($par, '->');

?

Or use
Code:
if $a->has('myattr') || empty($a->get( 'myattr' ))}
with spaces instead?
Back to top
View user's profile Send private message
eth8505
Smarty Rookie


Joined: 11 May 2006
Posts: 11

PostPosted: Tue Mar 21, 2017 12:11 pm    Post subject: Reply with quote

I could do lots of things and build special cases, but it doesn't feel right, as what smarty does here is break the way if statements are supposed to be processed in any language.

If statements are processed from left to right. If you have chained or conditions, the first true condition will result in the rest of the conditions not being executed, as we already have a true result due to the or.
What smarty does here is simply wrong, as the order of the conditions is changed.
Back to top
View user's profile Send private message
Aristophan
Smarty Regular


Joined: 10 Jan 2011
Posts: 96

PostPosted: Tue Mar 21, 2017 12:59 pm    Post subject: Reply with quote

That was just a quick help. Nothing objected.
It just seemed to be "somehow" necessary to not allow things like "('".
(It looks like because of function property handling.)
I think the processing order of "isset() OR empty()" is still valid, but code must be read and this is why you are redirected. It assumes there is a function property in your code part.
So you could as well try with
Code:
empty($a->get("myattr"))

And this since Smarty (as a one person) development seems to have stopped for the moment. If this is a longterm situation is uncertain.
Back to top
View user's profile Send private message
eth8505
Smarty Rookie


Joined: 11 May 2006
Posts: 11

PostPosted: Tue Mar 21, 2017 1:07 pm    Post subject: Reply with quote

I see. I'll have to stick to 3.1.29 then, as that's the last one working properly for me.
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP