1
resposta

[Dúvida] Estou recebendo o seguinte erro no terminal, alguem pode me ajudar?

PS C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-match> php .\index.php

Warning: require(C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-matchsrc/Modelo/Filme.php): Failed to open stream: No such file or directory in C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-match\index.php on line 3

Fatal error: Uncaught Error: Failed opening required 'C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-matchsrc/Modelo/Filme.php' (include_path='.;C:\php\pear') in C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-match\index.php:3 Stack trace: #0 {main} thrown in C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-match\index.php on line 3 PS C:\Users\pedro\OneDrive\Área de Trabalho\alura\Curso-php\screen-match>

1 resposta

Oi, Pedro!

Note que o caminho screen-matchsrc/Modelo/Filme.php está sem uma barra entre screen-match e src. Isso pode ser a causa do problema.

Corrija o Caminho no index.php: Abra o arquivo index.php e verifique a linha onde você está requerendo o arquivo Filme.php. Deve ser algo assim: php require 'src/Modelo/Filme.php'; Certifique-se de que o caminho está correto e que há uma barra entre screen-match e src.

Depois de fazer essas alterações, salve o arquivo e tente rodar o script novamente.

Espero ter ajudado e bons estudos!