Jump to content

allow_url_fopen


php4ever

Recommended Posts

I'm trying to create a simple template version notification snippet and I'm missing something but what I'm not sure;

 

<?php
function version_check()
{
$template_version = '2.5';
if (ini_get("allow_url_fopen") == 1) {
	$lastest_version = @file_get_contents("http://www.jaredritchey.com/downloads/601.txt");
	$check = version_compare($template_version, $lastest_version, ">=");
}

}
echo($latest_version);
?>

 

The idea is to look at a directory and compare versions.  If there is a newer one then echo a statement or something.  If not echo nothing.

 

Is allow_url_fopen a down graded function or did I just approach this wrong?

 

~ Jared

Link to comment
https://forums.phpfreaks.com/topic/74275-allow_url_fopen/
Share on other sites

I quite didn't understand your question...

 

What I mean with function call is you need to call function like this: version_check();

 

So the full code would be:

<?php
function version_check()
{
$template_version = '2.5';
if (ini_get("allow_url_fopen") == 1) {
	$lastest_version = @file_get_contents("http://www.jaredritchey.com/downloads/601.txt");
	$check = version_compare($template_version, $lastest_version, ">=");
}	
echo($latest_version);
}
?>
version_check();

Link to comment
https://forums.phpfreaks.com/topic/74275-allow_url_fopen/#findComment-375558
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.