Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Q
question2answer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
outils
question2answer
Commits
d25092f7
Commit
d25092f7
authored
Jul 31, 2020
by
Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coding style
parent
f9cddbb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
qa-base.php
qa-include/qa-base.php
+14
-14
No files found.
qa-include/qa-base.php
View file @
d25092f7
...
...
@@ -1840,21 +1840,21 @@ function qa_retrieve_url($url)
return
''
;
}
$contents
=
''
;
$contents
=
''
;
// Due to the design of the file_get_contents function, sometimes getting external content will be very slow.
// You should use curl instead if possible. For details, see here:
// https://stackoverflow.com/questions/3629504/php-file-get-contents-very- slow-when-using-full-url
if
(
function_exists
(
'curl_exec'
))
{
$curl
=
curl_init
(
$url
);
curl_setopt
(
$curl
,
CURLOPT_RETURNTRANSFER
,
TRUE
);
curl_setopt
(
$curl
,
CURLOPT_SSL_VERIFYPEER
,
FALSE
);
$contents
=
@
curl_exec
(
$curl
);
curl_close
(
$curl
);
}
if
(
!
strlen
(
$contents
))
{
$contents
=
@
file_get_contents
(
$url
);
}
// So we try curl first, if possible. https://stackoverflow.com/q/3629504
if
(
function_exists
(
'curl_exec'
))
{
$curl
=
curl_init
(
$url
);
curl_setopt
(
$curl
,
CURLOPT_RETURNTRANSFER
,
true
);
curl_setopt
(
$curl
,
CURLOPT_SSL_VERIFYPEER
,
false
);
$contents
=
@
curl_exec
(
$curl
);
curl_close
(
$curl
);
}
if
(
!
strlen
(
$contents
))
{
$contents
=
@
file_get_contents
(
$url
);
}
return
$contents
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment