Problem with PHP Script to get Domain Age ( file_get_contents)











up vote
0
down vote

favorite












Hi i have a Problem in php that i dont understand,



I made a php script to get the domain age from specific domain form the waybackmachine with file_get_contents



The Domains all in an array called domains and comes from an texfield from the user.



The Script works fine but only for the first domain in the array, but for the second domain i get only strange values or nothing from the loop



but i dont know why, i see no mistake. And all domains in the array are correct.



Can anyone help me what i do wrong?



//Array with Domains
$domain = explode("n",trim($_POST['url']));

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> $domain[$i]: $years Jahre und $month Monate </div>";

}









share|improve this question






















  • Hi, maybe you need to use preg_match_all()?
    – Oleg Nurutdinov
    2 days ago















up vote
0
down vote

favorite












Hi i have a Problem in php that i dont understand,



I made a php script to get the domain age from specific domain form the waybackmachine with file_get_contents



The Domains all in an array called domains and comes from an texfield from the user.



The Script works fine but only for the first domain in the array, but for the second domain i get only strange values or nothing from the loop



but i dont know why, i see no mistake. And all domains in the array are correct.



Can anyone help me what i do wrong?



//Array with Domains
$domain = explode("n",trim($_POST['url']));

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> $domain[$i]: $years Jahre und $month Monate </div>";

}









share|improve this question






















  • Hi, maybe you need to use preg_match_all()?
    – Oleg Nurutdinov
    2 days ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Hi i have a Problem in php that i dont understand,



I made a php script to get the domain age from specific domain form the waybackmachine with file_get_contents



The Domains all in an array called domains and comes from an texfield from the user.



The Script works fine but only for the first domain in the array, but for the second domain i get only strange values or nothing from the loop



but i dont know why, i see no mistake. And all domains in the array are correct.



Can anyone help me what i do wrong?



//Array with Domains
$domain = explode("n",trim($_POST['url']));

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> $domain[$i]: $years Jahre und $month Monate </div>";

}









share|improve this question













Hi i have a Problem in php that i dont understand,



I made a php script to get the domain age from specific domain form the waybackmachine with file_get_contents



The Domains all in an array called domains and comes from an texfield from the user.



The Script works fine but only for the first domain in the array, but for the second domain i get only strange values or nothing from the loop



but i dont know why, i see no mistake. And all domains in the array are correct.



Can anyone help me what i do wrong?



//Array with Domains
$domain = explode("n",trim($_POST['url']));

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> $domain[$i]: $years Jahre und $month Monate </div>";

}






php file-get-contents






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 days ago









Devil089

327




327












  • Hi, maybe you need to use preg_match_all()?
    – Oleg Nurutdinov
    2 days ago


















  • Hi, maybe you need to use preg_match_all()?
    – Oleg Nurutdinov
    2 days ago
















Hi, maybe you need to use preg_match_all()?
– Oleg Nurutdinov
2 days ago




Hi, maybe you need to use preg_match_all()?
– Oleg Nurutdinov
2 days ago












1 Answer
1






active

oldest

votes

















up vote
2
down vote



accepted










I think the problem lies in the URL decoding and encoding. The domains that you pass to 'http://web.archive.org/cdx/search/cdx?url=' have to be fully encoded.
See below how to accomplish this...



//Array with Domains
$domain = explode("n",trim($_POST['url']));


# url encode all the urls/domains.
$domain = array_map(function($domain){ return urlencode($domain); }, $domain);

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

$domainNonEncoded = htmlspecialchars(urldecode($domain[$i])); # get the decoded url

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> {$domainNonEncoded}: $years Jahre und $month Monate </div>";

}





share|improve this answer























  • Thank you , that solve the problem. Now i get the correct data!
    – Devil089
    2 days ago












  • that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
    – marvinIsSacul
    2 days ago










  • Thank you works great :)
    – Devil089
    2 days ago










  • note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
    – marvinIsSacul
    2 days ago












  • Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
    – Devil089
    2 days ago











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373638%2fproblem-with-php-script-to-get-domain-age-file-get-contents%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote



accepted










I think the problem lies in the URL decoding and encoding. The domains that you pass to 'http://web.archive.org/cdx/search/cdx?url=' have to be fully encoded.
See below how to accomplish this...



//Array with Domains
$domain = explode("n",trim($_POST['url']));


# url encode all the urls/domains.
$domain = array_map(function($domain){ return urlencode($domain); }, $domain);

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

$domainNonEncoded = htmlspecialchars(urldecode($domain[$i])); # get the decoded url

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> {$domainNonEncoded}: $years Jahre und $month Monate </div>";

}





share|improve this answer























  • Thank you , that solve the problem. Now i get the correct data!
    – Devil089
    2 days ago












  • that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
    – marvinIsSacul
    2 days ago










  • Thank you works great :)
    – Devil089
    2 days ago










  • note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
    – marvinIsSacul
    2 days ago












  • Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
    – Devil089
    2 days ago















up vote
2
down vote



accepted










I think the problem lies in the URL decoding and encoding. The domains that you pass to 'http://web.archive.org/cdx/search/cdx?url=' have to be fully encoded.
See below how to accomplish this...



//Array with Domains
$domain = explode("n",trim($_POST['url']));


# url encode all the urls/domains.
$domain = array_map(function($domain){ return urlencode($domain); }, $domain);

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

$domainNonEncoded = htmlspecialchars(urldecode($domain[$i])); # get the decoded url

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> {$domainNonEncoded}: $years Jahre und $month Monate </div>";

}





share|improve this answer























  • Thank you , that solve the problem. Now i get the correct data!
    – Devil089
    2 days ago












  • that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
    – marvinIsSacul
    2 days ago










  • Thank you works great :)
    – Devil089
    2 days ago










  • note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
    – marvinIsSacul
    2 days ago












  • Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
    – Devil089
    2 days ago













up vote
2
down vote



accepted







up vote
2
down vote



accepted






I think the problem lies in the URL decoding and encoding. The domains that you pass to 'http://web.archive.org/cdx/search/cdx?url=' have to be fully encoded.
See below how to accomplish this...



//Array with Domains
$domain = explode("n",trim($_POST['url']));


# url encode all the urls/domains.
$domain = array_map(function($domain){ return urlencode($domain); }, $domain);

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

$domainNonEncoded = htmlspecialchars(urldecode($domain[$i])); # get the decoded url

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> {$domainNonEncoded}: $years Jahre und $month Monate </div>";

}





share|improve this answer














I think the problem lies in the URL decoding and encoding. The domains that you pass to 'http://web.archive.org/cdx/search/cdx?url=' have to be fully encoded.
See below how to accomplish this...



//Array with Domains
$domain = explode("n",trim($_POST['url']));


# url encode all the urls/domains.
$domain = array_map(function($domain){ return urlencode($domain); }, $domain);

// Print the Array for debugging
print_r($domain);



// count domains for the loop
$count = count($domain);
echo $count;

for ($i = 0; $i < $count; $i++) {

$content=file_get_contents('http://web.archive.org/cdx/search/cdx?url='.$domain[$i].'',FALSE, NULL, 1, 600);

//use the data from file_get_contents to calculate the age

preg_match('/d+/', $content, $date);
$startyear= substr($date[0], 0, -10);
$startmonth= substr($date[0], 4, -8);
$actualyear= date("Y");


// calculate the year & month
$years= $actualyear- $startyear;
$month= 12-$startmonth;

//echo the Age

$domainNonEncoded = htmlspecialchars(urldecode($domain[$i])); # get the decoded url

echo " <div style='font-size:20px;text-align:center;width:100%;height:5%;color:#25bb7f;
font-weight: bold;'> {$domainNonEncoded}: $years Jahre und $month Monate </div>";

}






share|improve this answer














share|improve this answer



share|improve this answer








edited 2 days ago

























answered 2 days ago









marvinIsSacul

29616




29616












  • Thank you , that solve the problem. Now i get the correct data!
    – Devil089
    2 days ago












  • that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
    – marvinIsSacul
    2 days ago










  • Thank you works great :)
    – Devil089
    2 days ago










  • note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
    – marvinIsSacul
    2 days ago












  • Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
    – Devil089
    2 days ago


















  • Thank you , that solve the problem. Now i get the correct data!
    – Devil089
    2 days ago












  • that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
    – marvinIsSacul
    2 days ago










  • Thank you works great :)
    – Devil089
    2 days ago










  • note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
    – marvinIsSacul
    2 days ago












  • Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
    – Devil089
    2 days ago
















Thank you , that solve the problem. Now i get the correct data!
– Devil089
2 days ago






Thank you , that solve the problem. Now i get the correct data!
– Devil089
2 days ago














that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
– marvinIsSacul
2 days ago




that is because the domain name was urlencoded. Look at my answer again, I have edited it to solve your second problem.
– marvinIsSacul
2 days ago












Thank you works great :)
– Devil089
2 days ago




Thank you works great :)
– Devil089
2 days ago












note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
– marvinIsSacul
2 days ago






note i just edited it again to add the htmlspecialchars function. this basically helps with proper browser output by escaping some certain entity characters.
– marvinIsSacul
2 days ago














Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
– Devil089
2 days ago




Thanks marvin, i searched to long for the right solution and dont know whats the problem :D
– Devil089
2 days ago


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373638%2fproblem-with-php-script-to-get-domain-age-file-get-contents%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith