Skip to content

Default to Laravel File cache if redis is down

In the spirit of “chaos monkey” I’m trying to ensure that a laravel application keeps going even when the services it depends on are down. It uses a DB for primary storage, and a redis cache. What I’d like to do is have it automatically fall back to the file cache if and when redis fai…

Laravel, how to ignore an accessor

I have a model with a custom accessor so I get that custom attribute, But now, in one case, I need to get only some fields, without this OrderContents one. But doing it this way, it returns me the OrderContents as well.. is there a way to not get that field? Thanks! Answer There’s no way to do it in

Exit PHP from the CLI OSX

First of all, I am an EXTREMELY newbie in the PHP world. So I wanted to run a PHP web site in OSX installing php liip. After that, I went to my terminal and I just type php (just to see what happends)…

Dynamic variables binding in mysqli bind_param

When I try to below code it give me a warning I really don’t know why its happening I read a lot of same title questions in Stack Overflow but some has comma separated types or need more type but in my case I think its proper but why I am keep getting warnings? Answer