Asil_Mehmet
Forumdan Uzaklaştırıldı
- Katılım
- 7 Şub 2013
- Mesajlar
- 1,178
- Tepkime puanı
- 0
- Puanları
- 0
- Yaş
- 28
Windows Server Symlink Creator
PHP- Kodu:
PHP- Kodu:
<?php
//////////////////////////////////////////
// Code By Ayazoglu
// www.ayazoglu.org
//////////////////////////////////////////
define('SYMLINK_FILE', 0);
define('SYMLINK_DIR', 1);
define('SYMLINK_JUNCTION', 2);
function symlink ($target, $link, $flag = SYMLINK_FILE) {
switch ($flag) {
case SYMLINK_DIR: $pswitch = '/d'; break;
case SYMLINK_JUNCTION: $pswitch = '/j'; break;
case SYMLINK_FILE:
default: $pswitch = ''; break;
}
$target = str_replace('/', '\\', $target);
$link = str_replace('/', '\\', $link);
return exec('mklink ' . $pswitch . ' "' . $link . '" "' . $target . '"');
}
symlink("C:\Inetpub\vhosts\guvenagac.com\httpdocs");
?>
Ayazaoğlunun Tooludur beğendiğim için paylaşıyorum
PHP- Kodu:
PHP- Kodu:
<?php
//////////////////////////////////////////
// Code By Ayazoglu
// www.ayazoglu.org
//////////////////////////////////////////
define('SYMLINK_FILE', 0);
define('SYMLINK_DIR', 1);
define('SYMLINK_JUNCTION', 2);
function symlink ($target, $link, $flag = SYMLINK_FILE) {
switch ($flag) {
case SYMLINK_DIR: $pswitch = '/d'; break;
case SYMLINK_JUNCTION: $pswitch = '/j'; break;
case SYMLINK_FILE:
default: $pswitch = ''; break;
}
$target = str_replace('/', '\\', $target);
$link = str_replace('/', '\\', $link);
return exec('mklink ' . $pswitch . ' "' . $link . '" "' . $target . '"');
}
symlink("C:\Inetpub\vhosts\guvenagac.com\httpdocs");
?>
Ayazaoğlunun Tooludur beğendiğim için paylaşıyorum