Giter Site home page Giter Site logo

Comments (6)

xfra35 avatar xfra35 commented on June 23, 2024

There's actually no second parameter in this function. Fixed.

from f3com-data.

ethanpil avatar ethanpil commented on June 23, 2024

Here is the source code from https://github.com/bcosca/fatfree/blob/master/lib/base.php

Starting line 244. It seems to me that there are two parameters...

/**
*   Return TRUE if hive key is not set
*   (or return timestamp and TTL if cached)
*   @return bool
*   @param $key string
*   @param $val mixed
**/
function exists($key,&$val=NULL) {
    $val=$this->ref($key,FALSE);
    return isset($val)?
        TRUE:
        (Cache::instance()->exists($this->hash($key).'.var',$val)?
            $val:FALSE);
}

from f3com-data.

sn0opy avatar sn0opy commented on June 23, 2024

Actually there's a second parameter, that's right. I was already starting to write an answer to this ticket, but since I was to stupid to figure out, what exactly ref() does, I thought it would be better to wait for someone else to answer.

I know, that the second parameter is just a refernce indicated by the &. Without that, I'd say, that $val is overwritten by $key in this line: $val=$this->ref($key,FALSE);. Which means, that the second parameter is useless and does nothing (anymore).

from f3com-data.

ethanpil avatar ethanpil commented on June 23, 2024

What I was hoping is that it can set a default value if it doesnt exist.

So, if it failed (doesnt exist) then after it will return true and exist with the set value. That might be useful.

So with no data set in CONFIG.year :

if($f3->exists('CONFIG.year'))
...would be false and not continue...

if($f3->exists('CONFIG.year',date('Y'))
...would set a default value into the hive and return true....

I thought I had seen this in an example somewhere but I just wasnt sure so thats when I started investigating...

from f3com-data.

xfra35 avatar xfra35 commented on June 23, 2024

You're right, I missed that change. The 2nd parameter was added to match the Cache->exists signature: bcosca/fatfree@a60eece

That means that the logic is now the same as the one used in Cache->exists: the hive value is copied to the variable passed in reference if the variable exists. In other words, $f3->exists('foo',$bar) is a shorthand for $bar = $f3->exists('foo') ? $f3->get('foo') : NULL.

I updated the docs.

from f3com-data.

xfra35 avatar xfra35 commented on June 23, 2024

@ethanpil the 2nd parameter doesn't respond to your need. But you could do something like this:

$year = $f3->get('CONFIG.year') ? : date('Y')

or if you need to update CONFIG.year:

if (!$f3->exists('CONFIG.year'))
  $f3->set('CONFIG.year',date('Y'));

or if you need to update CONFIG.year and fetch its value:

if (!$f3->exists('CONFIG.year',$year))
  $year=$f3->set('CONFIG.year',date('Y'));

from f3com-data.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.