I'm having problems with scandir
I can not find the directory in any way, every time I get the following Warning
The system can not find the path specified.
Look at my code. I use Wamp X64, Windows 10 and PHP 5.6:
<?php
$pasta = filter_input(INPUT_GET, 'pasta');
$tamanho = filter_input(INPUT_GET, 'tamanho');
/* separador */
$separador = '/galeriaimg/';
// aqui recebo somente o valor que preciso ou seja o nome da pasta
$valor = explode($separador, $pasta);
// repassando somente o valor necessário para a variavel
$pasta = $valor[1];
// Formas que eu tentei obter o retorno do Scandir todas sem sucesso!
$dir = 'http://localhost:3030/wpauditoria/images/biblioteca/$tamanho/galeriaimg/$pasta';
$dir = $_SERVER['DOCUMENT_ROOT']."/wpauditoria/images/biblioteca/$tamanho/galeriaimg/$pasta";
$dir = "../../../images/biblioteca/$tamanho/galeriaimg/$pasta";
$dir = "/wpauditoria/images/biblioteca/$tamanho/galeriaimg/$pasta";
$files = scandir($dir);
//echo (json_encode($files));
?>