인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

highturne's profile image
highturne

asked

Life Coding - PHP Basics A to Z

Reading and writing files

file_get_contents 안됨 문의

Written on

·

500

0

file_get_contents 를 써서 외부 php 홈페이지를 불러오려고 하는데, 

Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\Bitnami\wampstack-7.3.16-1\apache2\htdocs\firstapp\readhp.php on line 2

Warning: file_get_contents(https://www.php.net/manual/en/function.array-change-key-case.php): failed to open stream: No such file or directory in C:\Bitnami\wampstack-7.3.16-1\apache2\htdocs\firstapp\readhp.php on line 2

이런 에러가 뜨면서 안열리네요. 해결방법 좀 알려주세요.

php

Answer 1

0

인자로 넣으신 URL을 문자처럼 감싸야되는 따옴표가 빠진거같습니다 ㅎㅎ

file_get_contents('https://www.php.net/manual/en/function.array-change-key-case.php');

highturne's profile image
highturne

asked

Ask a question