묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
url 값을 구해서 넣으려면...
2002.10.14 17:01
아래의 소스를 사용하려 하는데요...
php화일을 보여주는 소스입니다...
제가 원하는것은
링크되어있는 주소를 누르면 그 주소의 값을 구해서 아래의 php구문의
index.php대신에 그 링크된 주소의 값을 넣으려면 어떻게 해야 하는지 입니다..
고수님들 부탁드립니다...
해석도 안되는 phpschool.com에 가서 퍼온 겁니다...
그럼...부탁~~~
<?php
if ( !empty ( $_REQUEST['noline'] ) )
{
$noline = true;
}
// Turn on output buffering
ob_start();
// Show source of file
show_source ( 'index.php' );
// Get contents of buffer
$raw = ob_get_contents();
// Clean and end buffering
ob_end_clean();
// Split the source into lines
$raw = explode ( '<br />', $raw );
// Insert the line number
$ml = strlen ( count ( $raw ) );
for ( $i = 0; $i < count ( $raw ); $i++ )
{
if ( !isset ( $noline ) )
{
$gap = ( $ml - strlen ( $i ) );
$raw[$i] = "<FONT COLOR=#999999><CODE>[" . str_repeat(" ", $gap ) . $i . "]</CODE></FONT>" . $raw[$i] . "<BR />";
}
else
{
$raw[$i] = "$raw[$i]<BR />";
}
}
// Convert back to a string
$raw = implode ( '', $raw );
// Print source
echo "<html>n <body>n$rawn </body>n</html>";
?>
php화일을 보여주는 소스입니다...
제가 원하는것은
링크되어있는 주소를 누르면 그 주소의 값을 구해서 아래의 php구문의
index.php대신에 그 링크된 주소의 값을 넣으려면 어떻게 해야 하는지 입니다..
고수님들 부탁드립니다...
해석도 안되는 phpschool.com에 가서 퍼온 겁니다...
그럼...부탁~~~
<?php
if ( !empty ( $_REQUEST['noline'] ) )
{
$noline = true;
}
// Turn on output buffering
ob_start();
// Show source of file
show_source ( 'index.php' );
// Get contents of buffer
$raw = ob_get_contents();
// Clean and end buffering
ob_end_clean();
// Split the source into lines
$raw = explode ( '<br />', $raw );
// Insert the line number
$ml = strlen ( count ( $raw ) );
for ( $i = 0; $i < count ( $raw ); $i++ )
{
if ( !isset ( $noline ) )
{
$gap = ( $ml - strlen ( $i ) );
$raw[$i] = "<FONT COLOR=#999999><CODE>[" . str_repeat(" ", $gap ) . $i . "]</CODE></FONT>" . $raw[$i] . "<BR />";
}
else
{
$raw[$i] = "$raw[$i]<BR />";
}
}
// Convert back to a string
$raw = implode ( '', $raw );
// Print source
echo "<html>n <body>n$rawn </body>n</html>";
?>
그리고 질문이 이해가 안간다는..