Tagged Questions

2
votes
2answers
71 views

casting issue with realpath function (c programming)

When I compile the following code: #define _POSIX_C_SOURCE 200112L #define _ISOC99_SOURCE #define __EXTENSIONS__ #include <stdio.h> #include <limits.h> #include <stdlib.h> int …
1
vote
3answers
190 views

Example of realpath function (C Programming)

I'm looking for an example of how to use the realpath function in a C program. I can't seem to find one on the web or in any of my C programming books.
0
votes
5answers
136 views

RealPath safe?

<?php if (preg_match('/^[a-z0-9]+$/', $_GET['p'])) { $page = realpath('pages/'.$_GET['p'].'.php'); $tpl = realpath('templates/'.$_GET['p'].'.html'); if ($page && $tpl) { include $page; …
0
votes
2answers
574 views

How can I tune the PHP realpath cache?

Recent versions of PHP have a cache of filenames for knowing the real path of files, and require_once() and include_once() can take advantage of it. There's a value you can set in your php.ini to set …