实施例: 我有一个名称为filephp.srt
的文件我想在运行该文件时它将成为php但该文件仍然具有该名称!
有谁知道函数可以这样运行吗?
答案 0 :(得分:1)
您可以尝试在 Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(filePath)));
shareIntent.setType("text/html");
startActivity(Intent.createChooser(shareIntent,"Share"));
文件中添加处理程序:
.htaccess
答案 1 :(得分:-1)
文件扩展名的目的是让您的计算机知道该文件中存在哪种类型的代码。如果你将filephp.srt
的文件扩展名保留为.srt
,服务器将不会知道里面有php代码,因此不会将其作为php代码运行,尽管可能有一些强制方法的hacky方法服务器运行一个文件,好像它是一个php文件。