Search Results

1
vote

How to include variable in SPARQL query using PHP

Both the query in the question and laalto's answer aren't valid SPARQL, but laalto is getting closer. It seems like Ismet wants to replace the ?name variable with a fixed value. If so, the …
0
votes

UTF8 Filenames in PHP and Different Unicode Encodings

Firstly: You should try to avoid imposing semantics on the names of files. I can't really tell why PHP is generating filenames in your scenario, so I can't suggest how you should apply this rule. …
3
votes

In php, how do logical operators work _with non-booleans_?

In PHP the result of a boolean comparison is always a boolean, the operands are coerced to boolean. http://u …