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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.