当我使用这个简单的代码时,我得到错误:
PHP:
[Loggable]
internal class Program {
private static void Main(string[] args) {
String[] myArray = new String[] {"X"};
for (int i = 0; i <= 100; i++) {
Console.WriteLine(myArray[i]);
}
}
}
[Serializable]
public class LoggableAttribute : OnExceptionAspect {
public override void OnException(MethodExecutionArgs args) {
Console.WriteLine("Caught by postsharp: " + args.Exception);
args.FlowBehavior = FlowBehavior.Continue;
}
}
如你所见,我没有发送任何东西输出,但我说头已经发送... 任何人都可以帮忙...
错误:
Warning: Cannot modify header information - headers already sent in C:\xampp\htdocs\hi.php on line 4
我谷歌这个错误,但搜索的所有结果都没有发送输出....但你看到我不发送任何东西输出... :( 我已经使用了ob_start()方法,但我再次收到此错误 我真的很困惑请帮忙