PHP中如何在服务器上git clone下载github资源?
网上搜了一个,通过exec命令执行
<?php
/**
* This function handles the pull / init / clone of a git repo
*
* @param $git_url Example
* of git clone url git://github.com/someuser/somerepo.git
*
* @return bool true
*/
public static function pullOrCloneRepo($git_url, $file_path)
{
if (! isset($git_url)) {
return false;
}
// validate contains git://github.com/
echo $file_path;
if (strpos($git_url, 'git') !== FALSE) {
if (is_dir($file_path)) {
$first_dir = getcwd();
// change dir to the new path
$new_dir = chdir($file_path);
// Git init
$git_init = shell_exec('git init');
// Git clone
$git_clone = shell_exec('git clone ' . $git_url);
// Git pull
$git_pull = shell_exec('git pull');
// change dir back
$change_dir_back = chdir($first_dir);
return true;
}
} else {
return false;
}
}也可以用,有没有通过socket形式直接下载github上的源码的php代码?网友回复
python如何可视化管理nginx的网站支持网站新增修改暂停配置等可视化修改?
python+html能否做一套好看的多服务器监控管理系统?
什么是卡尔曼滤波?
有没有兼容Puppeteer和 Playwright使用的docker独立chrome浏览器?
geo与seo区别?
chrome插件能否实现网页远程控制鼠标选择网页文字滚动网页?
nativescript开发的安卓与ios app应用是原生的吗?
go如何写一个类似redis的nosql数据库让python客户端调用?
php7中为啥无法使用$_SERVER['HTTP_RAW_POST_DATA'] ?
chrome插件能否实现2台电脑的远程协助桌面控制?


